智能仲裁后端服务

SealManage.java 607B

1234567891011121314151617181920212223242526272829303132333435363738
  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. }