银盛D1相关,提现部分改动,注册逻辑更改,后台切换通道
This commit is contained in:
@@ -3,16 +3,19 @@ package cn.pluss.platform.entity;
|
||||
import com.baomidou.mybatisplus.annotation.FieldStrategy;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author DJH
|
||||
*/
|
||||
@Data
|
||||
@TableName("tb_pluss_cash")
|
||||
public class Cash {
|
||||
|
||||
/**
|
||||
@@ -153,5 +156,8 @@ public class Cash {
|
||||
*/
|
||||
@TableField(insertStrategy = FieldStrategy.NEVER, updateStrategy = FieldStrategy.NEVER)
|
||||
private BigDecimal virRealCashAmt;
|
||||
|
||||
@TableField("cashStatus")
|
||||
private String cashStatus;
|
||||
}
|
||||
|
||||
|
||||
@@ -95,12 +95,12 @@ public class UserInfo {
|
||||
* 用户注册选择身份
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private String typeCode;
|
||||
private String typeCode = "MC";
|
||||
/**
|
||||
* 费率
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private String currentFee;
|
||||
private String currentFee = "0.38";
|
||||
|
||||
/**
|
||||
* 生成一个新的用户对象
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package cn.pluss.platform.entity;
|
||||
|
||||
import cn.pluss.platform.vo.CashStatusVO;
|
||||
import com.alibaba.fastjson.annotation.JSONField;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
@@ -7,6 +8,7 @@ import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 用户推广费率对照表
|
||||
@@ -40,4 +42,11 @@ public class UserPromotion {
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date updateTime;
|
||||
|
||||
@TableField(exist = false)
|
||||
private List<CashStatusVO> cashStatusVOList;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String loginName;
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
package cn.pluss.platform.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
public class CashStatusVO implements Serializable {
|
||||
|
||||
private String userType;
|
||||
|
||||
private String userId;
|
||||
|
||||
private String loginName;
|
||||
|
||||
|
||||
private String status;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user