123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 支付服务
- */
- package com.miniframe.generate.comm.pay;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 支付请求
- */
- public class D_XP1001 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String return_code;//返回状态码
- /**
- *返回状态码
- */
- public void setReturn_code(String return_code) {
- this.return_code=return_code;
- }
- /**
- *返回状态码
- */
- public String getReturn_code() {
- return this.return_code;
- }
- String return_msg;//返回信息
- /**
- *返回信息
- */
- public void setReturn_msg(String return_msg) {
- this.return_msg=return_msg;
- }
- /**
- *返回信息
- */
- public String getReturn_msg() {
- return this.return_msg;
- }
- String jsonString;//返回数据
- /**
- *返回数据
- */
- public void setJsonString(String jsonString) {
- this.jsonString=jsonString;
- }
- /**
- *返回数据
- */
- public String getJsonString() {
- return this.jsonString;
- }
- }
|