Compare commits

..

2 Commits
master ... dev

Author SHA1 Message Date
wxy 3af161e1b7 feat(sys-user): 新增用户余额字段
在SysUser类中添加了userBalance字段,并更新了相应的Excel注解,以支持用户余额的管理。
2024-08-21 19:33:57 +08:00
wxy ff0f532157 feat(sys-user): 新增用户余额字段
在SysUser类中添加了userBalance字段,并更新了相应的Excel注解,以支持用户余额的管理。
2024-08-21 19:27:52 +08:00
2 changed files with 7 additions and 76 deletions

View File

@ -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;
}

View File

@ -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;
}
}