feat(wms): 新增卷材统计摘要附件功能
- 在 WmsCoilStatisticsSummary 实体中添加 attachmentInfo 字段 - 在 WmsCoilStatisticsSummaryBo 中添加 attachmentInfo 字段 - 在 WmsCoilStatisticsSummaryVo 中添加 attachmentInfo 字段 - 更新 Mapper XML 映射文件中的结果映射配置 - 修改 Vo 类继承 BaseEntity 基类
This commit is contained in:
@@ -46,4 +46,7 @@ public class WmsCoilStatisticsSummary extends BaseEntity {
|
||||
@TableLogic
|
||||
private Long delFlag;
|
||||
|
||||
// 新增附件字段
|
||||
private String attachmentInfo;
|
||||
|
||||
}
|
||||
|
||||
@@ -42,5 +42,8 @@ public class WmsCoilStatisticsSummaryBo extends BaseEntity {
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
// 新增附件字段
|
||||
private String attachmentInfo;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import com.klp.common.annotation.ExcelDictFormat;
|
||||
import com.klp.common.convert.ExcelDictConvert;
|
||||
import com.klp.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
|
||||
@@ -15,7 +16,7 @@ import lombok.Data;
|
||||
*/
|
||||
@Data
|
||||
@ExcelIgnoreUnannotated
|
||||
public class WmsCoilStatisticsSummaryVo {
|
||||
public class WmsCoilStatisticsSummaryVo extends BaseEntity {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@@ -52,5 +53,7 @@ public class WmsCoilStatisticsSummaryVo {
|
||||
@ExcelProperty(value = "备注")
|
||||
private String remark;
|
||||
|
||||
// 新增附件字段
|
||||
private String attachmentInfo;
|
||||
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
<result property="statType" column="stat_type"/>
|
||||
<result property="statJson" column="stat_json"/>
|
||||
<result property="remark" column="remark"/>
|
||||
<result property="attachmentInfo" column="attachment_info"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
|
||||
Reference in New Issue
Block a user