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

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

@@ -22,16 +22,6 @@ public class BaseEntity implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
/** 备注 */
private String remark;
/** /**
* 搜索值 * 搜索值
*/ */

View File

@@ -54,6 +54,18 @@ public class DvCheckMachinery extends BaseEntity
/** 预留字段4 */ /** 预留字段4 */
private Long attr4; private Long attr4;
/** 备注 */
private String remark;
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public void setRecordId(Long recordId) public void setRecordId(Long recordId)
{ {
this.recordId = recordId; this.recordId = recordId;

View File

@@ -83,6 +83,16 @@ public class DvCheckRecord extends BaseEntity
/** 预留字段4 */ /** 预留字段4 */
private Long attr4; private Long attr4;
/** 备注 */
private String remark;
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public void setRecordId(Long recordId) public void setRecordId(Long recordId)
{ {

View File

@@ -57,6 +57,16 @@ public class DvCheckSubject extends BaseEntity
/** 预留字段4 */ /** 预留字段4 */
private Long attr4; private Long attr4;
/** 备注 */
private String remark;
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public void setRecordId(Long recordId) public void setRecordId(Long recordId)
{ {

View File

@@ -84,6 +84,16 @@ public class DvMachinery extends BaseEntity
/** 预留字段4 */ /** 预留字段4 */
private Long attr4; private Long attr4;
/** 备注 */
private String remark;
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public void setMachineryId(Long machineryId) public void setMachineryId(Long machineryId)
{ {

View File

@@ -89,6 +89,16 @@ public class DvMaintenRecord extends BaseEntity
/** 预留字段4 */ /** 预留字段4 */
private Long attr4; private Long attr4;
/** 备注 */
private String remark;
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public void setRecordId(Long recordId) public void setRecordId(Long recordId)
{ {

View File

@@ -109,6 +109,16 @@ public class DvRepair extends BaseEntity
/** 预留字段4 */ /** 预留字段4 */
private Long attr4; private Long attr4;
/** 备注 */
private String remark;
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public void setRepairId(Long repairId) public void setRepairId(Long repairId)
{ {

View File

@@ -69,6 +69,16 @@ public class DvRepairLine extends BaseEntity
/** 预留字段4 */ /** 预留字段4 */
private Long attr4; private Long attr4;
/** 备注 */
private String remark;
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public void setLineId(Long lineId) public void setLineId(Long lineId)
{ {

View File

@@ -53,6 +53,16 @@ public class DvSubject extends BaseEntity
/** 预留字段4 */ /** 预留字段4 */
private Long attr4; private Long attr4;
/** 备注 */
private String remark;
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public void setSubjectId(Long subjectId) public void setSubjectId(Long subjectId)
{ {

View File

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

View File

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

View File

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

View File

@@ -23,6 +23,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="updateTime" column="update_time"/> <result property="updateTime" column="update_time"/>
<result property="updateBy" column="update_by"/> <result property="updateBy" column="update_by"/>
<result property="unit" column="unit"/> <result property="unit" column="unit"/>
<result property="remark" column="remark"/>
</resultMap> </resultMap>