| | |
| | | package com.yami.trading.bean.loan; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | |
| | | |
| | | @Setter |
| | | @Getter |
| | | @TableId |
| | | private int uuid; |
| | | |
| | | /** |
| | | * 借贷期限(天) |
| | | * exam:1,3,7,30,90,180 |
| | | */ |
| | | @ApiModelProperty("借贷期限(天)") |
| | | private String term; |
| | | |
| | | |
| | | /** |
| | | * 借贷最大额度 |
| | | * exam:USDT:1000,ETH:800,BTC:300 |
| | | */ |
| | | @ApiModelProperty("借贷最大额度") |
| | | private String max_quota; |
| | | |
| | | |
| | | /** |
| | | * 借贷最小额度 |
| | | * exam:USDT:100,ETH:80,BTC:30 |
| | | */ |
| | | @ApiModelProperty("借贷最小额度") |
| | | private String min_quota; |
| | | |
| | | |
| | | /** |
| | | * 还款周期(天) |
| | | * exam:3,7,30,60,90,180,360 |
| | | */ |
| | | @ApiModelProperty("还款周期(天)") |
| | | private String repay_cycle; |
| | | |
| | | |
| | | /** |
| | | * 日利率(浮点数,百分比) |
| | | * exam:0.0003,0.0006,0.001 |
| | | */ |
| | | @ApiModelProperty("日利率(浮点数,百分比)") |
| | | private String daily_rate; |
| | | |
| | | |
| | | /** |
| | | * 还款方式 |
| | | * exam:1:到期还本息,2:到期还本金,3:到期还利息 |
| | | */ |
| | | @ApiModelProperty("还款方式 1:到期还本息,2:到期还本金,3:到期还利息") |
| | | private String repayment; |
| | | |
| | | |
| | | /** |
| | | * 放款机构ID |
| | | */ |
| | | private String lending_institution; |
| | | |
| | | |
| | | /** |
| | | * 放款机构名称 |
| | | */ |
| | | // @TableField("LENDING_NAME") |
| | | @ApiModelProperty("放款机构名称") |
| | | private String lending_name; |
| | | |
| | | |
| | | } |