采购细节表新增状态字段
This commit is contained in:
@@ -45,6 +45,10 @@ public class WmsPurchasePlanDetail extends BaseEntity {
|
|||||||
* 单位
|
* 单位
|
||||||
*/
|
*/
|
||||||
private String unit;
|
private String unit;
|
||||||
|
/**
|
||||||
|
* 状态( 0=新建,1=在途,2=到货,3=待审核,4=采购完成)
|
||||||
|
*/
|
||||||
|
private Integer status;
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -50,6 +50,11 @@ public class WmsPurchasePlanDetailBo extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private String unit;
|
private String unit;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态( 0=新建,1=在途,2=到货,3=待审核,4=采购完成)
|
||||||
|
*/
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -56,6 +56,12 @@ public class WmsPurchasePlanDetailVo {
|
|||||||
@ExcelProperty(value = "单位")
|
@ExcelProperty(value = "单位")
|
||||||
private String unit;
|
private String unit;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态( 0=新建,1=在途,2=到货,3=待审核,4=采购完成)
|
||||||
|
*/
|
||||||
|
@ExcelProperty(value = "状态")
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user