package com.thhy.mobile.modules.biz.steelrecord.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
/**
|
*
|
* @author zhang_xiao_bo
|
* @since 2023-05-06 14:55:16
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class SteelRecord implements Serializable {
|
|
|
/**
|
* 品牌
|
*/
|
|
|
private String brand;
|
|
/**
|
* 入库数量/出库数量
|
*/
|
|
|
private double changeStock;
|
|
/**
|
* 检查时间
|
*/
|
|
|
private Date checkTime;
|
|
/**
|
* 入库时间/出库时间
|
*/
|
|
|
private Date createTime;
|
|
/**
|
* 创建人
|
*/
|
|
|
private String createUser;
|
|
/**
|
* 厂家
|
*/
|
|
|
private String factoryName;
|
|
|
@Idkey
|
private String id;
|
|
|
/**
|
* 1可用2不可用
|
*/
|
|
|
private Integer isUse;
|
|
/**
|
* 条形码
|
*/
|
|
|
private String lineCode;
|
|
/**
|
* 项目ID
|
*/
|
|
|
private String proId;
|
|
/**
|
* 钢筋ID
|
*/
|
|
|
private String steelId;
|
|
/**
|
* 1入库2出库
|
*/
|
|
|
private Integer stockType;
|
|
/**
|
* 供应商ID
|
*/
|
|
|
private String supplierId;
|
|
private String companyId;
|
}
|