zhangzeli
5 天以前 7a8a994feafb8ef8333a9590bd637630c42609d6
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
package com.by4cloud.platform.processing.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.by4cloud.platform.common.data.mybatis.BaseModel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.hibernate.annotations.Table;
 
import javax.persistence.Column;
import javax.persistence.Entity;
 
@Data
@TableName("car_avg_tare")
@Entity
@javax.persistence.Table(name = "car_avg_tare")
@Table(appliesTo ="car_avg_tare", comment = "车重平均皮重")
@ApiModel(value = "车重平均皮重")
public class CarAvgTare extends BaseModel<CarAvgTare> {
 
    @ApiModelProperty(value = "车牌号")
    @Column(columnDefinition = "VARCHAR(32) comment '车牌号'")
    private String vehicleNo;
 
    @ApiModelProperty(value = "最小皮重")
    @Column(columnDefinition = "double comment '最小皮重'")
    private Double minTare;
 
    @ApiModelProperty(value = "最大皮重")
    @Column(columnDefinition = "double comment '最大皮重'")
    private Double maxTare;
 
    @ApiModelProperty(value = "平均皮重")
    @Column(columnDefinition = "double comment '平均皮重'")
    private Double avgTare;
 
    @ApiModelProperty(value = "差值")
    @Column(columnDefinition = "double comment '差值'")
    private Double weightDifference;
 
 
}