微信API 账单处理

This commit is contained in:
limqhz
2023-02-07 16:37:33 +08:00
parent 61697eb17d
commit 189a085f0b
11 changed files with 264 additions and 14 deletions

View File

@@ -5,6 +5,8 @@ import com.baomidou.mybatisplus.annotation.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import com.quinn.common.wx.AccBillType;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -13,11 +15,11 @@ import lombok.experimental.Accessors;
/**
* <p>
*
*
* </p>
*
* @author limqsh
* @since 2023-02-02
* @since 2023-02-07
*/
@Data
@EqualsAndHashCode(callSuper = false)
@@ -32,16 +34,24 @@ public class AccBill implements Serializable {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
private String name;
private String userId;
@ApiModelProperty(value = "金额")
private Double money;
@ApiModelProperty(value = "账单分类ID")
private Integer billType;
@ApiModelProperty(value = "账单类型")
private AccBillType billType;
@ApiModelProperty(value = "转账&还款需要")
private Integer fromAccount;
@ApiModelProperty(value = "账户分类ID")
private Integer accountType;
private Integer account;
@ApiModelProperty(value = "-1 转账 -2 还款")
private Integer moneyType;
private Date date;