1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * 支付服务
- */
- package com.miniframe.generate.comm.pay;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 支付服务
- */
- public class A_PAYHEAD extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String transCode;//交易编码
- /**
- *交易编码
- */
- public void setTransCode(String transCode) {
- this.transCode=transCode;
- }
- /**
- *交易编码
- */
- public String getTransCode() {
- return this.transCode;
- }
- String channelNo;//系统编号
- /**
- *系统编号
- */
- public void setChannelNo(String channelNo) {
- this.channelNo=channelNo;
- }
- /**
- *系统编号
- */
- public String getChannelNo() {
- return this.channelNo;
- }
- String userId;//用户编码
- /**
- *用户编码
- */
- public void setUserId(String userId) {
- this.userId=userId;
- }
- /**
- *用户编码
- */
- public String getUserId() {
- return this.userId;
- }
- String transTime;//交易时间
- /**
- *交易时间
- */
- public void setTransTime(String transTime) {
- this.transTime=transTime;
- }
- /**
- *交易时间
- */
- public String getTransTime() {
- return this.transTime;
- }
- String clientToken;//系统令牌
- /**
- *系统令牌
- */
- public void setClientToken(String clientToken) {
- this.clientToken=clientToken;
- }
- /**
- *系统令牌
- */
- public String getClientToken() {
- return this.clientToken;
- }
- }
|