增加BDPB事件处理代码
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
/**
|
||||
* Copyright 2018 bejson.com
|
||||
*/
|
||||
package com.gzzn.omms.msgexchangeapi.entity.msg.flop.bdpb;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
||||
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
|
||||
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
|
||||
import com.gzzn.omms.msgexchangeapi.entity.msg.META;
|
||||
|
||||
/**
|
||||
* Auto-generated: 2018-12-05 20:31:3
|
||||
*
|
||||
* @author bejson.com (i@bejson.com)
|
||||
* @website http://www.bejson.com/java2pojo/
|
||||
*/
|
||||
@JacksonXmlRootElement(localName="MSG")
|
||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||
public class BDPBMsg {
|
||||
|
||||
@JacksonXmlProperty(localName ="META")
|
||||
private META META;
|
||||
@JacksonXmlProperty(localName ="FLOP")
|
||||
private FLOP FLOP;
|
||||
|
||||
public void setMETA(META META) {
|
||||
this.META = META;
|
||||
}
|
||||
public META getMETA() {
|
||||
return META;
|
||||
}
|
||||
|
||||
public void setFLOP(FLOP FLOP) {
|
||||
this.FLOP = FLOP;
|
||||
}
|
||||
public FLOP getFLOP() {
|
||||
return FLOP;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
/**
|
||||
* Copyright 2018 bejson.com
|
||||
*/
|
||||
package com.gzzn.omms.msgexchangeapi.entity.msg.flop.bdpb;
|
||||
|
||||
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
|
||||
|
||||
/**
|
||||
* Auto-generated: 2018-12-05 20:31:3
|
||||
*
|
||||
* @author bejson.com (i@bejson.com)
|
||||
* @website http://www.bejson.com/java2pojo/
|
||||
*/
|
||||
public class FLOP {
|
||||
|
||||
@JacksonXmlProperty(localName ="FLID")
|
||||
private String FLID;
|
||||
@JacksonXmlProperty(localName ="FFID")
|
||||
private String FFID;
|
||||
@JacksonXmlProperty(localName ="BDPB")
|
||||
private String BDPB;
|
||||
|
||||
public void setFLID(String FLID) {
|
||||
this.FLID = FLID;
|
||||
}
|
||||
public String getFLID() {
|
||||
return FLID;
|
||||
}
|
||||
|
||||
public void setFFID(String FFID) {
|
||||
this.FFID = FFID;
|
||||
}
|
||||
public String getFFID() {
|
||||
return FFID;
|
||||
}
|
||||
|
||||
public void setBDPB(String BDPB) {
|
||||
this.BDPB = BDPB;
|
||||
}
|
||||
public String getBDPB() {
|
||||
return BDPB;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user