init
This commit is contained in:
@@ -2,6 +2,7 @@ package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -14,6 +15,7 @@ import java.io.Serializable;
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_account_bankcard")
|
||||
@Schema(description = "用户银行卡对象")
|
||||
public class CaiAccountBankcard implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
@@ -22,34 +24,42 @@ public class CaiAccountBankcard implements Serializable {
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
@Schema(description = "ID")
|
||||
private Integer id;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Schema(description = "用户ID")
|
||||
private Long userId;
|
||||
/**
|
||||
* 账户类型 1 支付宝 2 微信 3 银行卡
|
||||
*/
|
||||
@Schema(description = "类型")
|
||||
private Integer type;
|
||||
/**
|
||||
* 银行编码
|
||||
*/
|
||||
@Schema(description = "编码")
|
||||
private String bankCode;
|
||||
/**
|
||||
* 银行名称
|
||||
*/
|
||||
@Schema(description = "名称")
|
||||
private String bank;
|
||||
/**
|
||||
* 持卡人姓名
|
||||
*/
|
||||
@Schema(description = "持卡人姓名")
|
||||
private String cardName;
|
||||
/**
|
||||
* 卡号
|
||||
*/
|
||||
@Schema(description = "卡号")
|
||||
private String cardAccount;
|
||||
/**
|
||||
* 0 可用 1 不可用
|
||||
*/
|
||||
@Schema(description = "状态")
|
||||
private Integer status;
|
||||
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@ package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -22,27 +23,33 @@ public class CaiGoods implements Serializable {
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Schema(description = "ID")
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Schema(description = "名称")
|
||||
private String name;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Schema(description = "价格")
|
||||
private BigDecimal price;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Schema(description = "紫贝数量")
|
||||
private Long amount;
|
||||
/**
|
||||
* 状态 0 可用 1不可用
|
||||
*/
|
||||
@Schema(description = "可用状态")
|
||||
private Integer status;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Schema(description = "备注")
|
||||
private String remark;
|
||||
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@ package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -22,10 +23,12 @@ public class CaiReportCate implements Serializable {
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
@Schema(description = "举报分类ID")
|
||||
private Integer id;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Schema(description = "名称")
|
||||
private String name;
|
||||
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@ package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -22,14 +23,17 @@ public class CaiWithdrawExchange implements Serializable {
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
@Schema(description = "提现-兑换配置")
|
||||
private Long id;
|
||||
/**
|
||||
* 兑换金额
|
||||
*/
|
||||
@Schema(description = "兑换金额")
|
||||
private Integer money;
|
||||
/**
|
||||
* 所需货币数量
|
||||
*/
|
||||
@Schema(description = "所需货币")
|
||||
private Integer coinNum;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user