package com.vincent.rsf.server.manager.entity.excel;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import com.vincent.rsf.server.manager.entity.excel.annotation.ExcelAutoColumnSize;
|
import com.vincent.rsf.server.manager.entity.excel.annotation.ExcelComment;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
|
@Data
|
@ExcelAutoColumnSize
|
@Accessors(chain = true)
|
public class CheckOrderTemplate implements Serializable {
|
|
/**
|
* 编号
|
*/
|
@Excel(name = "*盘点单号")
|
@ApiModelProperty(value = "*盘点单号")
|
@ExcelComment(value = "code", example = "CK5945272236")
|
private String code;
|
|
@Excel(name = "行号")
|
@ApiModelProperty("行号")
|
@ExcelComment(value = "platItemId", example = "1357564255478")
|
private String platItemId;
|
|
@Excel(name = "客户订单号")
|
@ApiModelProperty("客户订单号")
|
@ExcelComment(value = "platOrderCode", example = "PT202564713301")
|
private String platOrderCode;
|
|
@Excel(name = "工单号")
|
@ApiModelProperty("工单号")
|
@ExcelComment(value = "platWorkCode", example = "PWC2354894211")
|
private String platWorkCode;
|
|
@Excel(name = "项目号")
|
@ApiModelProperty("项目号")
|
@ExcelComment(value = "projectCode", example = "PC2365845636001")
|
private String projectCode;
|
|
/**
|
* 单据类型
|
*/
|
@Excel(name = "*单据类型")
|
@ApiModelProperty(value = "*单据类型")
|
@ExcelComment(value = "type", example = "盘点单")
|
private String type;
|
|
/**
|
* 业务类型
|
*/
|
@Excel(name = "*业务类型")
|
@ApiModelProperty(value = "*业务类型")
|
@ExcelComment(value = "wkType", example = "定期盘点")
|
private String wkType;
|
|
|
@Excel(name = "*物料编码")
|
@ApiModelProperty("*物料编码")
|
@ExcelComment(value = "matnrCode", example = "102010101545")
|
private String matnrCode;
|
|
|
@Excel(name = "物料名称")
|
@ApiModelProperty("物料名称")
|
@ExcelComment(value = "maktx", example = "天瑞019-大A型支架-55飞机轮黑色,三角轮盖喷漆银色 (带攻丝钉)右")
|
private String maktx;
|
|
|
@Excel(name = "物料规格")
|
@ApiModelProperty("物料规格")
|
@ExcelComment(value = "maktx", example = "2*3*6")
|
private String spec;
|
|
|
@Excel(name = "物料型号")
|
@ApiModelProperty("物料型号")
|
@ExcelComment(value = "maktx", example = "abc")
|
private String model;
|
|
|
@Excel(name = "供应商编码")
|
@ApiModelProperty("供应商编码")
|
@ExcelComment(value = "splrCode", example = "685947")
|
private String splrCode;
|
|
@Excel(name = "供应商名称")
|
@ApiModelProperty("供应商名称")
|
@ExcelComment(value = "splrName", example = "浙江中扬立库技术有限公司")
|
private String splrName;
|
|
|
@Excel(name = "已完成数量")
|
@ApiModelProperty("已完成数量")
|
@ExcelComment(value = "qty", example = "0")
|
private String qty;
|
|
|
@Excel(name = "供应商批次")
|
@ApiModelProperty("供应商批次")
|
@ExcelComment(value = "splrBatch", example = "25251212")
|
private String splrBatch;
|
|
@Excel(name = "*数量")
|
@ApiModelProperty("*数量")
|
@ExcelComment(value = "anfme", example = "75")
|
private String anfme;
|
|
|
@Excel(name = "物流单号")
|
@ApiModelProperty("物流单号")
|
@ExcelComment(value = "logicNo", example = "SF100064851")
|
private String logicNo;
|
|
|
@Excel(name = "预计送达时间")
|
@ApiModelProperty("预计送达时间")
|
@ExcelComment(value = "arrTime", example = "2025-05-21")
|
private String arrTime;
|
|
@Excel(name = "包装名称")
|
@ApiModelProperty("包装名称")
|
@ExcelComment(value = "packName", example = "个")
|
private String packName;
|
|
@Excel(name = "备注")
|
@ApiModelProperty("备注")
|
@ExcelComment(value = "memo", example = "注:易碎品,轻拿放")
|
private String memo;
|
|
}
|