package com.thhy.materials.modules.biz.weigh.entity;
|
|
import lombok.Data;
|
import lombok.Getter;
|
import lombok.Setter;
|
import lombok.ToString;
|
|
import java.io.Serializable;
|
|
@Data
|
@Getter
|
@Setter
|
@ToString
|
public class TWeighbridge implements Serializable {
|
/**
|
*
|
*/
|
private Integer weighbridgeId;
|
|
/**
|
* 数据id
|
*/
|
private String id;
|
|
/**
|
* 过磅编号
|
*/
|
private String code;
|
|
/**
|
* 业务所属机构
|
*/
|
private String orgname;
|
|
/**
|
* 供应单位名称
|
*/
|
private String supplyorgname;
|
|
/**
|
* 运输车牌号
|
*/
|
private String carnumber;
|
|
/**
|
* 运输司机
|
*/
|
private String drivername;
|
|
/**
|
* 原料名称
|
*/
|
private String matname;
|
|
/**
|
* 原材料型号
|
*/
|
private String matmodel;
|
|
/**
|
* 过毛时间
|
*/
|
private String mpoundtime;
|
|
/**
|
* 过磅毛重 千克 kg
|
*/
|
private String mpoundweight;
|
|
/**
|
* 过毛人
|
*/
|
private String mpoundname;
|
|
/**
|
* 皮重时间
|
*/
|
private String ppoundtime;
|
|
/**
|
* 皮重
|
*/
|
private String ppoundweight;
|
|
/**
|
* 过皮人
|
*/
|
private String ppoundname;
|
|
/**
|
* 过磅净重
|
*/
|
private String jpoundweight;
|
|
/**
|
* 扣重
|
*/
|
private String buckleweight;
|
|
/**
|
* 毛重
|
*/
|
private String mweight;
|
|
/**
|
* 皮重
|
*/
|
private String pweight;
|
|
/**
|
* 净重
|
*/
|
private String jweight;
|
|
/**
|
* 入库仓名称
|
*/
|
private String warename;
|
|
/**
|
* 过磅图片,最多会有四张图片路径,逗号隔开
|
*/
|
private String fileimage;
|
|
/**
|
* 1未同步2已同步
|
*/
|
private Integer types;
|
|
/**
|
* This field was generated by MyBatis Generator.
|
* This field corresponds to the database table t_weighbridge
|
*
|
* @mbg.generated Fri Nov 24 11:06:42 CST 2023
|
*/
|
private static final long serialVersionUID = 1L;
|
}
|