智能仲裁后端服务

DeptIdentify.java 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. /** 部门id */
  12. private Long deptId;
  13. /** 用户id */
  14. private Long userId;
  15. /** 机构名称 */
  16. private String identifyName;
  17. /** 认证状态 */
  18. private Integer identifyStatus;
  19. /** 认证时间 */
  20. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  21. private Date identifyDate;
  22. /** 是否启用 */
  23. private Integer isUse;
  24. /** 经办人姓名 */
  25. private String operName;
  26. /** 经办人用户名 */
  27. private String operUserName;
  28. /** 经办人手机号 */
  29. private String operPhone;
  30. /** 机构账号ID */
  31. private String orgId;
  32. /** 认证授权流程ID */
  33. private String authFlowId;
  34. /** 部门认证链接 */
  35. private String identifyUrl;
  36. /** 机构信用代码 */
  37. private String creditCode;
  38. /** 法人姓名 */
  39. private String legalPerName;
  40. /** 法人手机号 */
  41. private String legalPerPhone;
  42. /** 机构类型(1 仲裁机构) */
  43. private Integer identifyType;
  44. /** 机构邮箱 */
  45. private String identifyEmail;
  46. /** 删除标志(0代表存在 2代表删除) */
  47. private Integer delFlag;
  48. }