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