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-eam/src/main/java/org/jeecg/modules/eam/entity/FinishTransferOrder.java | 15 ++++++++++++++- 1 files changed, 14 insertions(+), 1 deletions(-) diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/FinishTransferOrder.java b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/FinishTransferOrder.java index 77e9155..4fdb78d 100644 --- a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/FinishTransferOrder.java +++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/FinishTransferOrder.java @@ -10,6 +10,7 @@ import com.baomidou.mybatisplus.annotation.TableLogic; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; +import org.jeecg.common.constant.CommonConstant; import org.springframework.format.annotation.DateTimeFormat; import org.jeecgframework.poi.excel.annotation.Excel; import org.jeecg.common.aspect.annotation.Dict; @@ -50,7 +51,19 @@ /**departId*/ @Excel(name = "departId", width = 15) @ApiModelProperty(value = "departId") + private String departId; + @Excel(name = "featured", width = 15) + @ApiModelProperty(value = "featured") + private String featured; + + @Excel(name = "working", width = 15) + @ApiModelProperty(value = "working") + private String working; + + @Excel(name = "faultDescription", width = 15) + @ApiModelProperty(value = "faultDescription") + private String faultDescription; /**operateUser*/ @Excel(name = "operateUser", width = 15) @ApiModelProperty(value = "operateUser") @@ -91,7 +104,7 @@ @Excel(name = "delFlag", width = 15) @ApiModelProperty(value = "delFlag") @TableLogic - private Integer delFlag; + private Integer delFlag= CommonConstant.DEL_FLAG_0; /**remark*/ @Excel(name = "remark", width = 15) @ApiModelProperty(value = "remark") -- Gitblit v1.9.3