解决新模块部分不兼容问题

This commit is contained in:
2025-07-25 13:48:49 +08:00
parent 9e47465010
commit 8e474df39c
13 changed files with 94 additions and 12 deletions

View File

@@ -78,5 +78,9 @@ public class WmsProduct extends BaseEntity {
*/
@TableLogic
private Integer delFlag;
/**
* 备注
*/
private String remark;
}

View File

@@ -94,6 +94,6 @@ public class WmsProductBo extends BaseEntity {
* 是否启用0=否1=是)
*/
private Integer isEnabled;
//备注
private String remark;
}

View File

@@ -101,6 +101,11 @@ public class WmsProductVo {
@ExcelProperty(value = "是否启用", converter = ExcelDictConvert.class)
@ExcelDictFormat(readConverterExp = "0==否1=是")
private Integer isEnabled;
/**
* 备注
*/
@ExcelProperty(value = "备注")
private String remark;
}