实现机构认证功能
This commit is contained in:
@@ -0,0 +1,126 @@
|
||||
package com.ruoyi.wisdomarbitrate.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class DeptIdentify extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** ID */
|
||||
private Long id;
|
||||
/** 部门ID */
|
||||
private Long deptId;
|
||||
/** 用户ID */
|
||||
private Long userId;
|
||||
|
||||
/** 认证状态 */
|
||||
private Integer identifyStatus;
|
||||
|
||||
/** 认证时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date identifyDate;
|
||||
/** 是否启用 */
|
||||
private Integer isUse;
|
||||
|
||||
/** 用户名称 */
|
||||
private String nickName;
|
||||
/** 手机号码 */
|
||||
private String phonenumber;
|
||||
/** 部门名称 */
|
||||
private String deptName;
|
||||
/** 印章名称 */
|
||||
private String sealName;
|
||||
|
||||
public String getSealName() {
|
||||
return sealName;
|
||||
}
|
||||
|
||||
public void setSealName(String sealName) {
|
||||
this.sealName = sealName;
|
||||
}
|
||||
|
||||
/** 部门认证链接 */
|
||||
private String identifyUrl;
|
||||
|
||||
public String getIdentifyUrl() {
|
||||
return identifyUrl;
|
||||
}
|
||||
|
||||
public void setIdentifyUrl(String identifyUrl) {
|
||||
this.identifyUrl = identifyUrl;
|
||||
}
|
||||
|
||||
public String getNickName() {
|
||||
return nickName;
|
||||
}
|
||||
|
||||
public void setNickName(String nickName) {
|
||||
this.nickName = nickName;
|
||||
}
|
||||
|
||||
public String getPhonenumber() {
|
||||
return phonenumber;
|
||||
}
|
||||
|
||||
public void setPhonenumber(String phonenumber) {
|
||||
this.phonenumber = phonenumber;
|
||||
}
|
||||
|
||||
public String getDeptName() {
|
||||
return deptName;
|
||||
}
|
||||
|
||||
public void setDeptName(String deptName) {
|
||||
this.deptName = deptName;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getDeptId() {
|
||||
return deptId;
|
||||
}
|
||||
|
||||
public void setDeptId(Long deptId) {
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Integer getIdentifyStatus() {
|
||||
return identifyStatus;
|
||||
}
|
||||
|
||||
public void setIdentifyStatus(Integer identifyStatus) {
|
||||
this.identifyStatus = identifyStatus;
|
||||
}
|
||||
|
||||
public Date getIdentifyDate() {
|
||||
return identifyDate;
|
||||
}
|
||||
|
||||
public void setIdentifyDate(Date identifyDate) {
|
||||
this.identifyDate = identifyDate;
|
||||
}
|
||||
|
||||
public Integer getIsUse() {
|
||||
return isUse;
|
||||
}
|
||||
|
||||
public void setIsUse(Integer isUse) {
|
||||
this.isUse = isUse;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user