feat: 采购详情表加附件字段存质保单

This commit is contained in:
JR
2025-08-02 09:34:42 +08:00
parent d148bdbf92
commit 16c8bc593a
4 changed files with 16 additions and 0 deletions

View File

@@ -45,6 +45,10 @@ public class WmsPurchasePlanDetail extends BaseEntity {
* 单位 * 单位
*/ */
private String unit; private String unit;
/**
* 附件
*/
private String annex;
/** /**
* 状态( 0=新建1=在途2=到货3=待审核4=采购完成) * 状态( 0=新建1=在途2=到货3=待审核4=采购完成)
*/ */

View File

@@ -50,6 +50,11 @@ public class WmsPurchasePlanDetailBo extends BaseEntity {
*/ */
private String unit; private String unit;
/**
* 附件
*/
private String annex;
/** /**
* 状态( 0=新建1=在途2=到货3=待审核4=采购完成) * 状态( 0=新建1=在途2=到货3=待审核4=采购完成)
*/ */

View File

@@ -56,6 +56,12 @@ public class WmsPurchasePlanDetailVo {
@ExcelProperty(value = "单位") @ExcelProperty(value = "单位")
private String unit; private String unit;
/**
* 附件
*/
@ExcelProperty(value = "附件")
private String annex;
/** /**
* 状态( 0=新建1=在途2=到货3=待审核4=采购完成) * 状态( 0=新建1=在途2=到货3=待审核4=采购完成)
*/ */

View File

@@ -11,6 +11,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="owner" column="owner"/> <result property="owner" column="owner"/>
<result property="quantity" column="quantity"/> <result property="quantity" column="quantity"/>
<result property="unit" column="unit"/> <result property="unit" column="unit"/>
<result property="annex" column="annex"/>
<result property="status" column="status"/> <result property="status" column="status"/>
<result property="remark" column="remark"/> <result property="remark" column="remark"/>
<result property="delFlag" column="del_flag"/> <result property="delFlag" column="del_flag"/>