达标奖励
抽奖补偿
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package com.sqx.modules.app.entity;
|
||||
|
||||
import cn.hutool.core.date.DateUtil;
|
||||
import com.amazonaws.services.dynamodbv2.xspec.L;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
@@ -38,6 +39,8 @@ public class UserMoneyDetails implements Serializable {
|
||||
@ApiModelProperty("渠道用户id")
|
||||
@TableField("sys_user_id")
|
||||
private Long sysUserId;
|
||||
@ApiModelProperty("源id")
|
||||
private Long sourceId;
|
||||
|
||||
/**
|
||||
* 对应用户id
|
||||
@@ -119,6 +122,22 @@ public class UserMoneyDetails implements Serializable {
|
||||
* @param money 金额
|
||||
* @param content 内容描述
|
||||
*/
|
||||
public UserMoneyDetails(Long userId, Long sysUserId, Long byUserId, String title, Integer classify, Integer type,
|
||||
Integer state, BigDecimal money, String content, Integer moneyType,Long sourceId) {
|
||||
this.userId = userId;
|
||||
this.sysUserId = sysUserId;
|
||||
this.byUserId = byUserId;
|
||||
this.title = title;
|
||||
this.classify = classify;
|
||||
this.type = type;
|
||||
this.state = state;
|
||||
this.money = money;
|
||||
this.content = content;
|
||||
this.createTime = DateUtil.now();
|
||||
this.moneyType = moneyType;
|
||||
this.sourceId = sourceId;
|
||||
}
|
||||
|
||||
public UserMoneyDetails(Long userId, Long sysUserId, Long byUserId, String title, Integer classify, Integer type,
|
||||
Integer state, BigDecimal money, String content, Integer moneyType) {
|
||||
this.userId = userId;
|
||||
|
||||
Reference in New Issue
Block a user