张晓波
2023-09-19 164694c47c35d6654df69b533e8dbf8b5423efc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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;//称重表主键
}