| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package platform.modules.government.entity;
- import lombok.Data;
- import platform.common.base.model.BaseEntity;
- import platform.common.base.model.Template;
- import platform.modules.sys.entity.Approval;
- import javax.persistence.Table;
- import javax.persistence.Transient;
- import java.util.List;
- /**
- * @author kevin
- * @since 2019/3/14 10:45 AM
- */
- @Data
- @Table(name = "retreat_optimization")
- public class RetreatOptimization extends BaseEntity {
- /**
- * 编号
- */
- private String no;
- /**
- * 类型
- */
- private Integer type;
- /**
- * 板块
- */
- private Integer plate;
- /**
- * 提交时间
- */
- private String commit_time;
- /**
- * 状态
- */
- private Integer status;
- /**
- * 是否已读
- */
- private Boolean is_read;
- /**
- * 模版文件
- */
- @Transient
- private List<Template> materials;
- /**
- * 审批流
- */
- @Transient
- private List<Approval> approvals;
- @Transient
- private String plateName;
- @Transient
- private String typeStr;
- @Transient
- private String commitTime;
- @Transient
- private String statusStr;
- @Transient
- private String userName;
- @Transient
- private Boolean canAudit = false;
- @Transient
- private Boolean canEdit = false;
- }
|