审查视图

src/main/java/com/tianbo/analysis/model/ARRIVEDMASTER.java 1.0 KB
申海龙 authored
1 2
package com.tianbo.analysis.model;
朱兆平 authored
3 4
import lombok.Data;
申海龙 authored
5 6
import java.util.Date;
朱兆平 authored
7
@Data
申海龙 authored
8 9 10 11 12 13 14 15 16 17 18
public class ARRIVEDMASTER {
    private String autoid;

    private String waybillnomaster;

    private String tcdName;

    private String tcdTypecode;

    private String flightno;
朱兆平 authored
19
    private Date flightDate;
申海龙 authored
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 48 49 50 51 52 53 54 55 56 57 58 59 60

    private String carrier;

    private String originatingstation;

    private String oName;

    private String destinationstation;

    private String fdName;

    private String arrivedtotalpiece;

    private String totalpiecequantity;

    private String arrivedtotalweight;

    private String grossweightmeasureuc;

    private String totalgrossweightmeasure;

    private String totalgrossweightmeasureuc;

    private String chargeableweightmeasure;

    private String chargeableweightmeasureuc;

    private Date arriveddate;

    private String transportsplitdescription;

    private String customscode;

    private String productname;

    private String status;

    private String receiptinformation;

    private Date createdate;
}