package com.thhy.materials.modules.biz.weigh.entity;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @Author QiuYuHao
|
* @CreateDate 2023-08-29 16:31:31
|
* 地磅实体
|
*/
|
@Data
|
public class WeighVo {
|
|
private Integer weighId;//称重表id
|
private String serialNumber;//流水号
|
private String carNumber;//车牌号
|
private String weighType;//过磅类型
|
private String forwardingUnit;//发货单位
|
private String consignee;//收货单位
|
private String tradeName;//货名
|
private String specifications;//规格
|
|
private Double grossWeight;//毛重
|
private Double tare;//皮重
|
private Double netWeight;//净重
|
private Double buckleWeight;//扣重
|
private Double actualWeight;//实重
|
private BigDecimal unitPrice;//单价
|
private BigDecimal amountOfMoney;//金额
|
private Integer coefficientOfReduction;//折方系数
|
private Integer quantity;//方量
|
private BigDecimal weighingFee;//过磅费
|
|
private String grossWeightWeigher;//毛重司磅员
|
private String tareWeightman;//皮重司磅员
|
private String grossPound;//毛重磅号
|
private String piPound;//皮重磅号
|
private String grossTime;//毛时间
|
private String skinTime;//皮时间
|
private String oneCrossTime;//一次过磅时间
|
private String twoCrossTime;//二次过磅时间
|
private String updateBy;//更新人
|
private String updateTime;//更新时间
|
private String notes;//备注
|
private Integer byId;//称重表主键
|
}
|