智能仲裁后端服务

SealManage.java 771B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.ruoyi.wisdomarbitrate.domain;
  2. import com.ruoyi.common.core.domain.BaseEntity;
  3. import lombok.Data;
  4. @Data
  5. public class SealManage extends BaseEntity {
  6. private static final long serialVersionUID = 1L;
  7. /**
  8. * ID
  9. */
  10. private Long id;
  11. /**
  12. * 机构关联id
  13. */
  14. private Long identifyId;
  15. /**
  16. * 印章名称
  17. */
  18. private String sealName;
  19. /**
  20. * 印章id
  21. */
  22. private String sealId;
  23. /**
  24. * 附件id
  25. */
  26. private Integer annexId;
  27. /**
  28. * 印章审核状态(0未通过,1通过)
  29. */
  30. private Integer sealStatus;
  31. /**
  32. * 印章使用状态(0禁用,1启用)
  33. */
  34. private Integer isUse;
  35. /**
  36. * 附件路径
  37. */
  38. private String annexPath;
  39. }