package com.ishop.model.wechat;
|
|
/**
|
* 支付附加对象
|
* @date 2023-07-25
|
*/
|
public class AttachVo {
|
|
public AttachVo() {}
|
|
public AttachVo(String type, Long userId) {
|
this.type = type;
|
this.userId = userId;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public Long getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Long userId) {
|
this.userId = userId;
|
}
|
|
// @ApiModelProperty(value = "业务类型,订单 = order,充值 = recharge", required = true)
|
private String type = "order";
|
|
// @ApiModelProperty(value = "用户id", required = true)
|
private Long userId;
|
}
|