机构管理.公章管理优化
This commit is contained in:
@@ -2,182 +2,39 @@ package com.ruoyi.wisdomarbitrate.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
@Data
|
||||
public class DeptIdentify extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** ID */
|
||||
private Long id;
|
||||
/** 部门ID */
|
||||
private Long deptId;
|
||||
/** 用户ID */
|
||||
private Long userId;
|
||||
|
||||
/** 机构名称 */
|
||||
private String identifyName;
|
||||
/** 认证状态 */
|
||||
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;
|
||||
/** 经办人姓名 */
|
||||
private String operName;
|
||||
/** 经办人手机号 */
|
||||
private String operPhone;
|
||||
|
||||
/** 机构账号ID */
|
||||
private String orgId;
|
||||
|
||||
/** 认证授权流程ID */
|
||||
private String authFlowId;
|
||||
|
||||
public String getSealId() {
|
||||
return sealId;
|
||||
}
|
||||
|
||||
public void setSealId(String sealId) {
|
||||
this.sealId = sealId;
|
||||
}
|
||||
|
||||
/** 印章id */
|
||||
private String sealId;
|
||||
|
||||
/**
|
||||
* 附件id
|
||||
*/
|
||||
private Integer annexId;
|
||||
/**
|
||||
* 印章状态 0禁用,1启用
|
||||
*/
|
||||
private Integer sealStatus;
|
||||
|
||||
public Integer getAnnexId() {
|
||||
return annexId;
|
||||
}
|
||||
|
||||
public void setAnnexId(Integer annexId) {
|
||||
this.annexId = annexId;
|
||||
}
|
||||
|
||||
public String getAuthFlowId() {
|
||||
return authFlowId;
|
||||
}
|
||||
|
||||
public void setAuthFlowId(String authFlowId) {
|
||||
this.authFlowId = authFlowId;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public String getSealName() {
|
||||
return sealName;
|
||||
}
|
||||
|
||||
public void setSealName(String sealName) {
|
||||
this.sealName = sealName;
|
||||
}
|
||||
|
||||
/** 部门认证链接 */
|
||||
private String identifyUrl;
|
||||
|
||||
public String getIdentifyUrl() {
|
||||
return identifyUrl;
|
||||
}
|
||||
/** 机构类型(1 仲裁机构) */
|
||||
private Integer identifyType;
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
public Integer getSealStatus() {
|
||||
return sealStatus;
|
||||
}
|
||||
|
||||
public void setSealStatus(Integer sealStatus) {
|
||||
this.sealStatus = sealStatus;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user