审查视图

src/main/java/com/tianbo/analysis/model/CustomReception.java 1.0 KB
朱兆平 authored
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
package com.tianbo.analysis.model;

import lombok.Data;

@Data
public class CustomReception {
    private String messageID;
    private String functionCode;
    private String messageType;
    private String senderID;
    private String receiverID;
    private String sendTime;
    private String version;
    private String flightNo;
    private String flightDate;
    private String wayBillMaster;
    private String wayBillSecond;
    private String responseCode;
    private String responseText;

    public  CustomReception(String messageType,
                            String flightNo,
                            String flightDate,
                            String wayBillMaster,
                            String wayBillSecond,
                            String responseText
                            ){
        this.messageType = messageType;
        this.flightNo = flightNo;
        this.flightDate = flightDate;
        this.wayBillMaster = wayBillMaster;
        this.wayBillSecond = wayBillSecond;
        this.responseText = responseText;
    }
}