Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
|
3af161e1b7 | |
|
ff0f532157 |
|
@ -1,55 +0,0 @@
|
|||
package com.muyu.common.system.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Author: wangxinyuan
|
||||
* @Date: 2024/8/25 下午3:19
|
||||
*/
|
||||
@Data
|
||||
public class PaymentParam {
|
||||
|
||||
|
||||
|
||||
private Integer id;
|
||||
/**
|
||||
* 异步跳转路径
|
||||
*/
|
||||
private String notifyUrl;
|
||||
|
||||
/**
|
||||
* 跳转路径
|
||||
*/
|
||||
private String returnUrl;
|
||||
|
||||
/**
|
||||
* 订单号
|
||||
*/
|
||||
private String outTradeNo;
|
||||
|
||||
/**
|
||||
* 支付金额
|
||||
*/
|
||||
private BigDecimal totalAmount;
|
||||
|
||||
/**
|
||||
* 商品名称
|
||||
*/
|
||||
private String subject;
|
||||
|
||||
/**
|
||||
* 支付类型 手机:QUICK_WAP_WAY 电脑:FAST_INSTANT_TRADE_PAY
|
||||
*/
|
||||
private String productCode;
|
||||
|
||||
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date createTime;
|
||||
|
||||
}
|
|
@ -73,16 +73,6 @@ public class SysUser extends BaseEntity {
|
|||
@Excel(name = "用户性别", readConverterExp = "0=男,1=女,2=未知")
|
||||
private String sex;
|
||||
|
||||
/**
|
||||
* 用户头像
|
||||
*/
|
||||
private String avatar;
|
||||
|
||||
/**
|
||||
* 密码
|
||||
*/
|
||||
private String password;
|
||||
|
||||
|
||||
/**
|
||||
* 用户余额
|
||||
|
@ -92,10 +82,14 @@ public class SysUser extends BaseEntity {
|
|||
|
||||
|
||||
/**
|
||||
* 用户余额
|
||||
* 用户头像
|
||||
*/
|
||||
@Excel(name = "新支付金额")
|
||||
private Double paymentAmount;
|
||||
private String avatar;
|
||||
|
||||
/**
|
||||
* 密码
|
||||
*/
|
||||
private String password;
|
||||
|
||||
/**
|
||||
* 帐号状态(0正常 1停用)
|
||||
|
@ -184,12 +178,4 @@ public class SysUser extends BaseEntity {
|
|||
public String getPhonenumber () {
|
||||
return phonenumber;
|
||||
}
|
||||
|
||||
public Double getUserBalance() {
|
||||
return userBalance;
|
||||
}
|
||||
|
||||
public void setUserBalance(Double userBalance) {
|
||||
this.userBalance = userBalance;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue