init
This commit is contained in:
@@ -33,6 +33,10 @@ public class CaiAccountCash implements Serializable {
|
||||
* 订单号
|
||||
*/
|
||||
private String orderNo;
|
||||
/**
|
||||
* 提现紫贝
|
||||
*/
|
||||
private Long withdrawCoin;
|
||||
/**
|
||||
* 提现金额
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 守护赠送流水对象 cai_guard_log
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-30
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_guard_log")
|
||||
public class CaiGuardLog implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
* 自增id
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
/**
|
||||
* 女神
|
||||
*/
|
||||
private Long fromUserId;
|
||||
/**
|
||||
* 赠送人
|
||||
*/
|
||||
private Long toUserId;
|
||||
/**
|
||||
* 赠送个数
|
||||
*/
|
||||
private Long guardNum;
|
||||
/**
|
||||
* 守护值
|
||||
*/
|
||||
private Long guardValue;
|
||||
/**
|
||||
* 流水ID
|
||||
*/
|
||||
private Long consumeLogId;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
}
|
||||
@@ -29,11 +29,11 @@ public class CaiWithdrawExchange implements Serializable {
|
||||
* 兑换金额
|
||||
*/
|
||||
@Schema(description = "兑换金额")
|
||||
private Integer money;
|
||||
private Long money;
|
||||
/**
|
||||
* 所需货币数量
|
||||
*/
|
||||
@Schema(description = "所需货币")
|
||||
private Integer coinNum;
|
||||
private Long coinNum;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user