审查视图

src/main/java/com/sy/model/RESMESSAGE.java 1.5 KB
zhangFan 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 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 61 62 63 64
package com.sy.model;

public class RESMESSAGE {
    private String id;

    private String journeyid;

    private String manifest;

    private String responsecode;

    private String responsetext;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id == null ? null : id.trim();
    }

    public String getJourneyid() {
        return journeyid;
    }

    public void setJourneyid(String journeyid) {
        this.journeyid = journeyid == null ? null : journeyid.trim();
    }

    public String getManifest() {
        return manifest;
    }

    public void setManifest(String manifest) {
        this.manifest = manifest == null ? null : manifest.trim();
    }

    public String getResponsecode() {
        return responsecode;
    }

    public void setResponsecode(String responsecode) {
        this.responsecode = responsecode == null ? null : responsecode.trim();
    }

    public String getResponsetext() {
        return responsetext;
    }

    public void setResponsetext(String responsetext) {
        this.responsetext = responsetext == null ? null : responsetext.trim();
    }

    @Override
    public String toString() {
        return "RESMESSAGE{" +
                "id='" + id + '\'' +
                ", journeyid='" + journeyid + '\'' +
                ", manifest='" + manifest + '\'' +
                ", responsecode='" + responsecode + '\'' +
                ", responsetext='" + responsetext + '\'' +
                '}';
    }
}