nnnn
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 用户账户对象 cai_account
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-23
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_account_delete")
|
||||
public class AccountDelete implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
* 子账户ID
|
||||
*/
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
private Long id;
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Long userId;
|
||||
private String usercode;
|
||||
/**
|
||||
* 当前彩币数量
|
||||
*/
|
||||
private Long coin;
|
||||
/**
|
||||
* 收益的彩币数量
|
||||
*/
|
||||
private Long incomeCoin;
|
||||
/**
|
||||
* 积分
|
||||
*/
|
||||
private Long points;
|
||||
/**
|
||||
* 充值总额
|
||||
*/
|
||||
private BigDecimal totalBuyMoney;
|
||||
/**
|
||||
* 充值彩贝总额
|
||||
*/
|
||||
private Long totalBuyCoin;
|
||||
/**
|
||||
* 第四方充值总额
|
||||
*/
|
||||
private BigDecimal totalTrdMoney;
|
||||
/**
|
||||
* 聊天收入
|
||||
*/
|
||||
private Long messageIncomeCoin;
|
||||
/** 视频收入 */
|
||||
private Long videoIncomeCoin;
|
||||
/** 礼物收入 */
|
||||
private Long giftIncomeCoin;
|
||||
/** 守护收入 */
|
||||
private Long guardIncomeCoin;
|
||||
/** 工会收入 */
|
||||
private Long unionIncomeCoin;
|
||||
/**
|
||||
* 账户锁定 0 正常 1 锁定
|
||||
*/
|
||||
private Integer status;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user