eight
2024-12-10 f77fbfc8c07881f5239ce49b0dc78faaec3628b0
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
package cn.lihu.jh.module.ecg.feign;
 
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
 
 
@JacksonXmlRootElement(localName = "BSXml")
public class HisFeeConfirmReqBody {
 
    private MsgHeader msgHeader;
    private ExmRequest exmRequest;
 
    @JacksonXmlProperty(localName = "MsgHeader")
    public MsgHeader getMsgHeader() {
        return msgHeader;
    }
 
    public void setMsgHeader(MsgHeader msgHeader) {
        this.msgHeader = msgHeader;
    }
 
    @JacksonXmlProperty(localName = "ExmRequest")
    public ExmRequest getExmRequest() {
        return exmRequest;
    }
 
    public void setExmRequest(ExmRequest exmRequest) {
        this.exmRequest = exmRequest;
    }
}