feat(WmsPurchasePlan): 添加附件信息字段
- 在 WmsPurchasePlan、WmsPurchasePlanBo 和 WmsPurchasePlanVo 类中添加 attachmentInfo 字段 - 在 WmsPurchasePlanMapper.xml 中添加 attachmentInfo 字段的映射 - 用于存储和展示采购计划的附件信息
This commit is contained in:
@@ -40,6 +40,10 @@ public class WmsPurchasePlan extends BaseEntity {
|
|||||||
* 状态(0=新建,1=待审核,2=已审核,3=已完成,4=已取消)
|
* 状态(0=新建,1=待审核,2=已审核,3=已完成,4=已取消)
|
||||||
*/
|
*/
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
/**
|
||||||
|
* 附件信息
|
||||||
|
*/
|
||||||
|
private String attachmentInfo;
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -44,6 +44,11 @@ public class WmsPurchasePlanBo extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 附件信息
|
||||||
|
*/
|
||||||
|
private String attachmentInfo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -52,6 +52,12 @@ public class WmsPurchasePlanVo {
|
|||||||
@ExcelDictFormat(readConverterExp = "0==新建,1=待审核,2=已审核,3=已完成,4=已取消")
|
@ExcelDictFormat(readConverterExp = "0==新建,1=待审核,2=已审核,3=已完成,4=已取消")
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 附件信息
|
||||||
|
*/
|
||||||
|
@ExcelProperty(value = "附件信息")
|
||||||
|
private String attachmentInfo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<result property="owner" column="owner"/>
|
<result property="owner" column="owner"/>
|
||||||
<result property="orderId" column="order_id"/>
|
<result property="orderId" column="order_id"/>
|
||||||
<result property="status" column="status"/>
|
<result property="status" column="status"/>
|
||||||
|
<result property="attachmentInfo" column="attachment_info"/>
|
||||||
<result property="remark" column="remark"/>
|
<result property="remark" column="remark"/>
|
||||||
<result property="delFlag" column="del_flag"/>
|
<result property="delFlag" column="del_flag"/>
|
||||||
<result property="createTime" column="create_time"/>
|
<result property="createTime" column="create_time"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user