From 13b6ad41f0b057f8405f7976a990e9057547443a Mon Sep 17 00:00:00 2001 From: czt <czt18638530771@163.com> Date: 星期一, 09 六月 2025 20:01:00 +0800 Subject: [PATCH] 提交首页实现 --- igds-dzhwk-core/src/main/java/com/fzzy/igds/dzhwk/domain/HScreenSer.java | 27 ++++++++++++++++++--------- 1 files changed, 18 insertions(+), 9 deletions(-) diff --git a/igds-dzhwk-core/src/main/java/com/fzzy/igds/dzhwk/domain/ScreenSer.java b/igds-dzhwk-core/src/main/java/com/fzzy/igds/dzhwk/domain/HScreenSer.java similarity index 66% rename from igds-dzhwk-core/src/main/java/com/fzzy/igds/dzhwk/domain/ScreenSer.java rename to igds-dzhwk-core/src/main/java/com/fzzy/igds/dzhwk/domain/HScreenSer.java index 250ca35..76210b4 100644 --- a/igds-dzhwk-core/src/main/java/com/fzzy/igds/dzhwk/domain/ScreenSer.java +++ b/igds-dzhwk-core/src/main/java/com/fzzy/igds/dzhwk/domain/HScreenSer.java @@ -1,6 +1,7 @@ package com.fzzy.igds.dzhwk.domain; import com.bstek.dorado.annotation.PropertyDef; +import com.fzzy.igds.dzhwk.constant.Constant; import lombok.Data; import javax.persistence.Column; import javax.persistence.Entity; @@ -17,14 +18,14 @@ @Data @Entity @Table(name = "H_SCREEN_SER") -public class ScreenSer implements Serializable { +public class HScreenSer implements Serializable { - public static String SORT_PROP = "id"; + public static String SORT_PROP = "sn"; @Id - @PropertyDef(label = "涓婚敭ID") - @Column(name = "ID_", length = 40) - private String id; + @PropertyDef(label = "璐т綅鍗N") + @Column(name = "SN_", length = 100) + private String sn; @Column(name = "COMPANY_ID_", length = 10) @PropertyDef(label = "缁勭粐缂栫爜") @@ -34,10 +35,6 @@ @PropertyDef(label = "鎵�灞炲垎搴�") private String deptId; - @PropertyDef(label = "璐т綅鍗N") - @Column(name = "SN_", length = 100) - private String sn; - @PropertyDef(label = "璁惧鍚嶇О") @Column(name = "NAME_", length = 100) private String name; @@ -46,6 +43,18 @@ @Column(name = "ajdh", length = 25) private String ajdh; + @PropertyDef(label = "鏄惁寮�鍚�", description = "闂ㄥ紑鐏寒") + @Column(name = "IS_OPEN1_", length = 25) + private String isOpen1 = Constant.YN_Y; + + @PropertyDef(label = "鏄惁寮�鍚�", description = "闂ㄥ叧绛夌伃") + @Column(name = "IS_OPEN2_", length = 25) + private String isOPen2 = Constant.YN_Y; + + @PropertyDef(label = "鏄惁寮�鍚�", description = "瀹夊叏杩涗粨鎻愰啋") + @Column(name = "IS_OPEN3", length = 25) + private String isOpen3 = Constant.YN_Y; + @Column(name = "REMARK_", length = 200) @PropertyDef(label = "澶囨敞", description = "澶囨敞淇℃伅") private String remark; -- Gitblit v1.9.3