From 79bd8ea222cc3518ec91dce3dfb30fcf387cf96d Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期五, 25 四月 2025 16:45:13 +0800 Subject: [PATCH] 新增应急巡查线索任务相关接口 --- src/main/kotlin/com/flightfeather/grid/domain/ds1/entity/ClueQuestion.java | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/src/main/kotlin/com/flightfeather/grid/domain/ds1/entity/ClueQuestion.java b/src/main/kotlin/com/flightfeather/grid/domain/ds1/entity/ClueQuestion.java index 1c5454d..c9a730d 100644 --- a/src/main/kotlin/com/flightfeather/grid/domain/ds1/entity/ClueQuestion.java +++ b/src/main/kotlin/com/flightfeather/grid/domain/ds1/entity/ClueQuestion.java @@ -7,6 +7,7 @@ public class ClueQuestion { @Id @Column(name = "CQ_Id") + @GeneratedValue(strategy = GenerationType.IDENTITY) private Integer cqId; @Column(name = "CQ_Uid") @@ -47,6 +48,12 @@ @Column(name = "CQ_Upload_Time") private Date cqUploadTime; + + /** + * 鏄惁鏄唴閮ㄧ嚎绱㈢殑闂 + */ + @Column(name = "CQ_Internal") + private Boolean cqInternal; @Column(name = "CQ_File_Path") private String cqFilePath; @@ -228,6 +235,24 @@ } /** + * 鑾峰彇鏄惁鏄唴閮ㄧ嚎绱㈢殑闂 + * + * @return CQ_Internal - 鏄惁鏄唴閮ㄧ嚎绱㈢殑闂 + */ + public Boolean getCqInternal() { + return cqInternal; + } + + /** + * 璁剧疆鏄惁鏄唴閮ㄧ嚎绱㈢殑闂 + * + * @param cqInternal 鏄惁鏄唴閮ㄧ嚎绱㈢殑闂 + */ + public void setCqInternal(Boolean cqInternal) { + this.cqInternal = cqInternal; + } + + /** * @return CQ_File_Path */ public String getCqFilePath() { -- Gitblit v1.9.3