|
@@ -1,10 +1,10 @@
|
|
|
package com.fire.admin.dto;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.math.BigInteger;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
@@ -44,13 +44,13 @@ public class CustomerDto {
|
|
|
private Integer status;
|
|
|
|
|
|
@ApiModelProperty(value = "帐号余额")
|
|
|
- private Double balance;
|
|
|
+ private BigInteger balance;
|
|
|
|
|
|
@ApiModelProperty(value = "授信额度")
|
|
|
- private Double creditAmount;
|
|
|
+ private BigInteger creditAmount;
|
|
|
|
|
|
@ApiModelProperty(value = "当前费用")
|
|
|
- private Double currentAmount;
|
|
|
+ private BigInteger currentAmount;
|
|
|
|
|
|
@ApiModelProperty(value = "是否第一次登录,1:不是0:是")
|
|
|
private Integer isFirstLogin;
|
|
@@ -62,16 +62,16 @@ public class CustomerDto {
|
|
|
private String creator;
|
|
|
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
- private Date createTime;
|
|
|
+ private String createTime;
|
|
|
|
|
|
@ApiModelProperty(value = "修改者")
|
|
|
private String updator;
|
|
|
|
|
|
@ApiModelProperty(value = "修改时间")
|
|
|
- private Date updateTime;
|
|
|
+ private String updateTime;
|
|
|
|
|
|
@ApiModelProperty(value = "代理商提成比例(按照面额计算)")
|
|
|
- private Object partnerCommission;
|
|
|
+ private BigDecimal partnerCommission;
|
|
|
|
|
|
@ApiModelProperty(value = "跟用户关联,客户登录使用")
|
|
|
private Integer userId;
|