package com.thhy.materials.modules.biz.mixingstationstorage.entity;
|
|
import com.thhy.general.annotations.Excel;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @Author QiuYuHao
|
* @CreateDate 2023-09-04 19:15:06
|
* 校正记录
|
*/
|
@Data
|
public class TMaterialStockRecordVo {
|
private String id;
|
private Date createDate;//创建时间
|
private Integer type;//1跑批录入2 PDA管片质检 3库存矫正
|
private Integer opType;// 操作类型 1入库 2减
|
private String companyId;//公司ID
|
|
@Excel(sort = 1,title = "校正时间")
|
private String createTime;//创建时间
|
|
@Excel(sort = 2,title = "原料名称")
|
private String materialName;//字典表
|
|
@Excel(sort = 3,title = "计量单位")
|
private String unit;
|
|
@Excel(sort = 4,title = "校正吨数")
|
private Double materialValue;//吨
|
|
@Excel(sort = 5,title = "校正前库存")
|
private Double beforeStock;//之前库存
|
|
@Excel(sort = 6,title = "校正后库存")
|
private Double afterStock;//之后库存
|
|
@Excel(sort = 7,title = "备注")
|
private String remark;
|
|
@Excel(sort = 8,title = "校正人")
|
private String createUser;//校正人
|
}
|