| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.ruoyi.wisdomarbitrate.domain;
-
- import com.ruoyi.common.core.domain.BaseEntity;
- import lombok.Data;
-
- @Data
- public class SealManage extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /**
- * ID
- */
- private Long id;
-
- /**
- * 机构关联id
- */
- private Long identifyId;
-
- /**
- * 印章名称
- */
- private String sealName;
-
-
- /**
- * 印章id
- */
- private String sealId;
- /**
- * 附件id
- */
- private Integer annexId;
-
- /**
- * 印章审核状态(0未通过,1通过)
- */
- private Integer sealStatus;
- /**
- * 印章使用状态(0禁用,1启用)
- */
- private Integer isUse;
-
- /**
- * 附件路径
- */
- private String annexPath;
-
- }
|