package com.thhy.materials.modules.biz.mixingstationstorage.entity; import com.thhy.general.annotations.Excel; import com.thhy.general.annotations.Idkey; import lombok.Data; import java.io.Serializable; import java.util.Date; /** * @Author QiuYuHao * @CreateDate 2023-09-04 13:18:36 * 搅拌站入库记录 */ @Data public class MinXingPlantVo implements Serializable { private Integer mixingPlantId;//搅拌站 private String dictId;// 管片原料类型(字典表) private Integer stockType;//1入库 private Date createTime;//入库时间 private String supplierId;//供应商ID private Integer isUse;//1可用2不可用 private String companyId;//分公司id private String carName;//车牌号 private String proId;//项目ID private String createUser;//创建人 private Integer byId;//序号 @Excel(sort = 1,title = "入库时间") private String createDate;//字符串的入库时间 @Excel(sort = 2,title = "供应商") private String supplierName;//供应商名称 @Excel(sort = 3,title = "原料名称") private String dictName;//物料名称 @Excel(sort = 4,title = "入库重量") private Double changeStock;//入库重量 @Excel(sort = 5,title = "计量单位") private String unit; @Excel(sort = 6,title = "入库人") private String username; }