From 9b015b51b72ba050b4c38a6ba79eb45b7065e67d Mon Sep 17 00:00:00 2001 From: Lius <Lius2225@163.com> Date: 星期四, 25 七月 2024 10:11:52 +0800 Subject: [PATCH] 调整sql --- lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcVacationManagement.java | 20 +++++++++++++++++++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcVacationManagement.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcVacationManagement.java index 689408d..0fecc0e 100644 --- a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcVacationManagement.java +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcVacationManagement.java @@ -10,6 +10,7 @@ import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; +import org.jeecg.common.aspect.annotation.Dict; import org.jeecgframework.poi.excel.annotation.Excel; import org.springframework.format.annotation.DateTimeFormat; @@ -54,6 +55,7 @@ /** * 鏃ユ湡 */ + @Excel(name = "鏃ユ湡", width = 20, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern = "yyyy-MM-dd") @ApiModelProperty(value = "鏃ユ湡") @@ -64,7 +66,8 @@ */ @Excel(name = "绫诲瀷",width = 15) @ApiModelProperty("绫诲瀷") - private String type; + @Dict(dicCode = "vacation_type") + private String vacationType; /** * 澶囨敞 @@ -103,6 +106,21 @@ @ApiModelProperty("鏇存柊浜�") private String updateBy; + @TableField(exist = false) + private String equipmentIds; + + /** + * 寮�濮嬫椂闂� + */ + @TableField(exist = false) + private String startTime; + + /** + * 缁撴潫鏃堕棿 + */ + @TableField(exist = false) + private String endTime; + /** * 鍓嶅彴浼犲叆锛屽垽鏂瘡涓猧d */ -- Gitblit v1.9.3