Merge branch '0.8.X' of https://gitee.com/hdka/klp-oa into 0.8.X

This commit is contained in:
砂糖
2025-08-04 09:54:05 +08:00
4 changed files with 16 additions and 0 deletions

View File

@@ -40,6 +40,10 @@ public class WmsPurchasePlan extends BaseEntity {
* 状态0=新建1=待审核2=已审核3=已完成4=已取消)
*/
private Integer status;
/**
* 附件信息
*/
private String attachmentInfo;
/**
* 备注
*/

View File

@@ -44,6 +44,11 @@ public class WmsPurchasePlanBo extends BaseEntity {
*/
private Integer status;
/**
* 附件信息
*/
private String attachmentInfo;
/**
* 备注
*/

View File

@@ -52,6 +52,12 @@ public class WmsPurchasePlanVo {
@ExcelDictFormat(readConverterExp = "0==新建1=待审核2=已审核3=已完成4=已取消")
private Integer status;
/**
* 附件信息
*/
@ExcelProperty(value = "附件信息")
private String attachmentInfo;
/**
* 备注
*/

View File

@@ -10,6 +10,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="owner" column="owner"/>
<result property="orderId" column="order_id"/>
<result property="status" column="status"/>
<result property="attachmentInfo" column="attachment_info"/>
<result property="remark" column="remark"/>
<result property="delFlag" column="del_flag"/>
<result property="createTime" column="create_time"/>