This commit is contained in:
dute7liang
2023-12-24 19:28:38 +08:00
parent 3febb24205
commit 83cc2da012
15 changed files with 628 additions and 25 deletions

View File

@@ -0,0 +1,72 @@
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.math.BigDecimal;
import java.time.LocalDateTime;
/**
* 赠送记录对象 cai_give_log
*
* @author 77
* @date 2023-12-24
*/
@Data
@TableName("cai_give_log")
public class CaiGiveLog implements Serializable {
private static final long serialVersionUID=1L;
/**
*
*/
@TableId(value = "id")
private Long id;
/**
* 类型 1-注册 2-首充
*/
private Integer type;
/**
* 业务ID
*/
private Integer sourceBusinessId;
/**
* 发生金额
*/
private BigDecimal amount;
/**
* 消费方用户
*/
private Integer sourceUserId;
/**
* 消费方用户
*/
private Integer sourceUsercode;
/**
* 消费方用户
*/
private String sourcePhone;
/**
* 状态 -1-无须赠送 0-待赠送 1-已赠送
*/
private Integer status;
/**
* 分发人ID
*/
private Long opId;
/**
* 分发人名称
*/
private String opName;
/**
* 分发时间
*/
private LocalDateTime opCreate;
private LocalDateTime createTime;
}