智能仲裁后端服务

DeptIdentify.java 977B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.ruoyi.wisdomarbitrate.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.core.domain.BaseEntity;
  4. import lombok.Data;
  5. import java.util.Date;
  6. @Data
  7. public class DeptIdentify extends BaseEntity {
  8. private static final long serialVersionUID = 1L;
  9. /** ID */
  10. private Long id;
  11. /** 机构名称 */
  12. private String identifyName;
  13. /** 认证状态 */
  14. private Integer identifyStatus;
  15. /** 认证时间 */
  16. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  17. private Date identifyDate;
  18. /** 是否启用 */
  19. private Integer isUse;
  20. /** 经办人姓名 */
  21. private String operName;
  22. /** 经办人手机号 */
  23. private String operPhone;
  24. /** 机构账号ID */
  25. private String orgId;
  26. /** 认证授权流程ID */
  27. private String authFlowId;
  28. /** 部门认证链接 */
  29. private String identifyUrl;
  30. /** 机构类型(1 仲裁机构) */
  31. private Integer identifyType;
  32. }