skyouc
2025-03-13 39d006d651cdf3d813253dad1bde49198cfce8f5
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/excel/AsnOrderTemplate.java
@@ -5,6 +5,8 @@
import cn.afterturn.easypoi.handler.inter.IExcelModel;
import com.vincent.rsf.server.manager.entity.excel.annotation.ExcelAutoColumnSize;
import com.vincent.rsf.server.manager.entity.excel.annotation.ExcelComment;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
@@ -27,61 +29,60 @@
public class AsnOrderTemplate implements IExcelModel, IExcelDataModel, Serializable {
    @Excel(name = "行号")
    @ExcelComment(example = "1357564255478")
    @ExcelComment(value = "platItemId", example = "1357564255478")
    private String platItemId;
    @Excel(name = "物料名称")
    @ExcelComment(example = "物料名称")
    @ExcelComment(value = "matnk",example = "物料名称")
    private String matnk;
    @Excel(name = "数量")
    @ExcelComment(example = "25")
    @ExcelComment(value = "anfme",example = "25")
    private Double anfme;
    @Excel(name = "库存单位")
    @ExcelComment(example = "个")
    @ExcelComment(value = "stockUnit",example = "个")
    private String stockUnit;
    @Excel(name = "采购数量")
    @ExcelComment(example = "25")
    @ExcelComment(value = "purQty",example = "25")
    private Double purQty;
    @Excel(name = "采购单位")
    @ExcelComment(example = "个")
    @ExcelComment(value = "purUnit",example = "个")
    private String purUnit;
    @Excel(name = "已完成数量")
    @ExcelComment(example = "25")
    @ExcelComment(value = "qty",example = "25")
    private Double qty;
    @Excel(name = "供应商编码")
    @ExcelComment(example = "3654821")
    @ExcelComment(value = "splrCode",example = "3654821")
    private String splrCode;
    @Excel(name = "供应商名称")
    @ExcelComment(example = "浙江中扬技术公司")
    @ExcelComment(value = "splrName",example = "浙江中扬技术公司")
    private String splrName;
    @Excel(name = "供应商批次")
    @ExcelComment(example = "25251212")
    @ExcelComment(value = "splrBatch",example = "25251212")
    private String splrBatch;
    @Excel(name = "二维码")
    @ExcelComment(example = "")
    @ExcelComment(value = "qrcode",example = "")
    private String qrcode;
    @Excel(name = "条形码")
    @ExcelComment(example = "2354788")
    @ExcelComment(value = "barcode",example = "2354788")
    private String barcode;
    @Excel(name = "包装名称")
    @ExcelComment(example = "箱")
    @ExcelComment(value = "packName",example = "箱")
    private String packName;
    @Excel(name = "备注")
    @ExcelComment(example = "注:易碎品,轻拿放")
    @ExcelComment(value = "memo",example = "注:易碎品,轻拿放")
    private String memo;
    private Integer rowNum;