package com.example.erp.entity.mm;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.example.erp.entity.sd.OrderDetail;
|
import lombok.Data;
|
|
import java.time.LocalDate;
|
|
@Data
|
public class MaterialLog {
|
@TableId(type = IdType.AUTO)
|
@ExcelProperty("编号")
|
private Long id;
|
@ExcelProperty("操作单号")
|
private String operationOrderNumber;
|
@ExcelProperty("类型")
|
private String operateType;
|
@ExcelProperty("序号")
|
private Integer operationNumber;
|
@ExcelProperty("库存编号")
|
private Long inventoryId;
|
@ExcelProperty("物料编码")
|
private Long materialCode;
|
@ExcelProperty("物料名称")
|
private String materialName;
|
@ExcelProperty("产地")
|
private String producer;
|
@ExcelProperty("单位")
|
private String unit;
|
@ExcelProperty("宽度")
|
private Double width;
|
@ExcelProperty("高度")
|
private Double height;
|
@ExcelProperty("厚度")
|
private Double thickness;
|
@ExcelProperty("数量")
|
private Integer quantity;
|
@ExcelProperty("单片面积")
|
private Double singlePieceArea;
|
@ExcelProperty("库存区域")
|
private String inventoryArea;
|
@ExcelProperty("备注")
|
private String remarks;
|
@ExcelProperty("工程号")
|
private String projectNo;
|
@ExcelProperty("操作人")
|
private String operator;
|
@ExcelProperty("创建时间")
|
private LocalDate operateTime;
|
|
@ExcelProperty("优化使用数量")
|
private Integer useCount;
|
|
|
}
|