IMF_META.java 1.2 KB
package com.example.demo.model;

public class IMF_META {
    private String SNDR;//报文发送者账号
    private String RCVR;//指定消息接受者
    private String DDTM;//发送时间yyyyMMddhhmmss
    private String TYPE;//消息主类型
    private String STYP;//消息子类型
    private String SEQN;//消息序号

    public String getBODY() {
        return BODY;
    }

    public void setBODY(String BODY) {
        this.BODY = BODY;
    }

    private String BODY;//消息体

    public String getSNDR() {
        return SNDR;
    }

    public void setSNDR(String SNDR) {
        this.SNDR = SNDR;
    }

    public String getRCVR() {
        return RCVR;
    }

    public void setRCVR(String RCVR) {
        this.RCVR = RCVR;
    }

    public String getDDTM() {
        return DDTM;
    }

    public void setDDTM(String DDTM) {
        this.DDTM = DDTM;
    }

    public String getTYPE() {
        return TYPE;
    }

    public void setTYPE(String TYPE) {
        this.TYPE = TYPE;
    }

    public String getSTYP() {
        return STYP;
    }

    public void setSTYP(String STYP) {
        this.STYP = STYP;
    }

    public String getSEQN() {
        return SEQN;
    }

    public void setSEQN(String SEQN) {
        this.SEQN = SEQN;
    }
}