67 lines
1.2 KiB
Java
67 lines
1.2 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 remark;
|
||
|
|
|
||
|
|
|
||
|
|
}
|