123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 支付服务
- */
- package com.miniframe.generate.comm.pay;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 申请退款
- */
- public class A_XP1003 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String orderNo;//订单号
- /**
- *订单号
- */
- public void setOrderNo(String orderNo) {
- this.orderNo=orderNo;
- }
- /**
- *订单号
- */
- public String getOrderNo() {
- return this.orderNo;
- }
- String refundMoney;//退款金额
- /**
- *退款金额
- */
- public void setRefundMoney(String refundMoney) {
- this.refundMoney=refundMoney;
- }
- /**
- *退款金额
- */
- public String getRefundMoney() {
- return this.refundMoney;
- }
- String jsonString;//上行对象
- /**
- *上行对象
- */
- public void setJsonString(String jsonString) {
- this.jsonString=jsonString;
- }
- /**
- *上行对象
- */
- public String getJsonString() {
- return this.jsonString;
- }
- }
|