1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.supersavedriving.user.modular.system.util.bank.parmUtil;
|
| import com.thoughtworks.xstream.annotations.XStreamAlias;
| import lombok.Data;
|
|
| @Data
| @XStreamAlias("ROOT")
| public class T21000047Response {
| private String CODE;//外联平台应答码
| private String MESSAGE;//外联平台应答码描述
| private T21000047ResponseData DATA;//业务响应数据
| }
|
|