95 lines
1.8 KiB
Java
95 lines
1.8 KiB
Java
package com.klp.domain.vo;
|
||
|
||
import java.math.BigDecimal;
|
||
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
||
import com.alibaba.excel.annotation.ExcelProperty;
|
||
import com.klp.common.annotation.ExcelDictFormat;
|
||
import com.klp.common.convert.ExcelDictConvert;
|
||
import lombok.Data;
|
||
|
||
|
||
/**
|
||
* 采购计划明细视图对象 wms_purchase_plan_detail
|
||
*
|
||
* @author Joshi
|
||
* @date 2025-07-18
|
||
*/
|
||
@Data
|
||
@ExcelIgnoreUnannotated
|
||
public class WmsPurchasePlanDetailVo {
|
||
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
/**
|
||
* 明细ID
|
||
*/
|
||
@ExcelProperty(value = "明细ID")
|
||
private Long detailId;
|
||
|
||
/**
|
||
* 采购计划ID
|
||
*/
|
||
@ExcelProperty(value = "采购计划ID")
|
||
private Long planId;
|
||
|
||
/**
|
||
* 原材料ID
|
||
*/
|
||
@ExcelProperty(value = "原材料ID")
|
||
private Long rawMaterialId;
|
||
|
||
/**
|
||
* 负责人
|
||
*/
|
||
@ExcelProperty(value = "负责人")
|
||
private String owner;
|
||
|
||
/**
|
||
* 计划采购数量
|
||
*/
|
||
@ExcelProperty(value = "计划采购数量")
|
||
private BigDecimal quantity;
|
||
|
||
/**
|
||
* 单位
|
||
*/
|
||
@ExcelProperty(value = "单位")
|
||
private String unit;
|
||
|
||
/**
|
||
* 附件
|
||
*/
|
||
@ExcelProperty(value = "附件")
|
||
private String annex;
|
||
|
||
/**
|
||
* 状态( 0=新建,1=在途,2=到货,3=待审核,4=采购完成)
|
||
*/
|
||
@ExcelProperty(value = "状态")
|
||
private Integer status;
|
||
|
||
/**
|
||
* 备注
|
||
*/
|
||
@ExcelProperty(value = "备注")
|
||
private String remark;
|
||
|
||
@ExcelProperty(value = "原材料名称")
|
||
private String rawMaterialName;
|
||
@ExcelProperty(value = "原材料编码")
|
||
private String rawMaterialCode;
|
||
|
||
/**
|
||
* 需求量
|
||
*/
|
||
private BigDecimal demand;
|
||
/**
|
||
* 库存量
|
||
*/
|
||
private BigDecimal inventory;
|
||
/**
|
||
* 在途量
|
||
*/
|
||
private BigDecimal onTheWay;
|
||
}
|