All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.user.data.entity.UserVerification Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.user.data.entity;

import com.haoxuer.discover.data.entity.AbstractEntity;
import javax.persistence.Entity;
import javax.persistence.Table;

/**
 * 用户验证码
 *
 * @author aniaojian
 */
@Entity
@Table(name = "user_verification")
public class UserVerification extends AbstractEntity {
  
  /**
   * 验证码
   */
  private String code;
  
  /**
   * 用户
   */
  private String name;
  
  /**
   * 分类
   */
  private Integer catalog;
  
  public String getCode() {
    return code;
  }
  
  public void setCode(String code) {
    this.code = code;
  }
  
  public Integer getCatalog() {
    return catalog;
  }
  
  public void setCatalog(Integer catalog) {
    this.catalog = catalog;
  }
  
  public String getName() {
    return name;
  }
  
  public void setName(String name) {
    this.name = name;
  }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy