|
|
|
@@ -56,6 +56,12 @@ public class WxPayOrder implements Serializable { |
|
|
|
/**用户ID**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="用户ID",name="cUserId") |
|
|
|
private Long cUserId; |
|
|
|
/**B端用户ID**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="B端用户ID",name="bUserId") |
|
|
|
private Long bUserId; |
|
|
|
/**扫码授权编码**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="扫码授权编码",name="authCode") |
|
|
|
private String authCode; |
|
|
|
/**ip地址**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="ip地址",name="ip") |
|
|
|
private String ip; |
|
|
|
@@ -125,7 +131,23 @@ public class WxPayOrder implements Serializable { |
|
|
|
this.cUserId = cUserId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getIp() { |
|
|
|
public Long getbUserId() { |
|
|
|
return bUserId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setbUserId(Long bUserId) { |
|
|
|
this.bUserId = bUserId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getAuthCode() { |
|
|
|
return authCode; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAuthCode(String authCode) { |
|
|
|
this.authCode = authCode; |
|
|
|
} |
|
|
|
|
|
|
|
public String getIp() { |
|
|
|
return ip; |
|
|
|
} |
|
|
|
public void setIp(String _ip) { |
|
|
|
@@ -215,6 +237,8 @@ public class WxPayOrder implements Serializable { |
|
|
|
,UpdateTime_ASC("`update_time` ASC"),UpdateTime_DESC("`update_time` DESC") |
|
|
|
,OrderId_ASC("`order_id` ASC"),OrderId_DESC("`order_id` DESC") |
|
|
|
,CUserId_ASC("`c_user_id` ASC"),CUserId_DESC("`c_user_id` DESC") |
|
|
|
,BUserId_ASC("`b_user_id` ASC"),BUserId_DESC("`b_user_id` DESC") |
|
|
|
,AuthCode_ASC("`auth_code` ASC"),AuthCode_DESC("`auth_code` DESC") |
|
|
|
,Ip_ASC("`ip` ASC"),Ip_DESC("`ip` DESC") |
|
|
|
,PayAmount_ASC("`pay_amount` ASC"),PayAmount_DESC("`pay_amount` DESC") |
|
|
|
,PayTimeStart_ASC("`pay_time_start` ASC"),PayTimeStart_DESC("`pay_time_start` DESC") |
|
|
|
|