CreditExchangeRate.java
978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.lhcredit.project.business.creditExchangeRate.domain;
import com.lhcredit.framework.web.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
/**
* 汇率表 credit_exchange_rate
*
* @author lhcredit
* @date 2022-06-30
*/
@Data
@ApiModel(value = "汇率")
public class CreditExchangeRate extends BaseEntity {
private static final long serialVersionUID=1L;
/** */
@ApiModelProperty(value = "")
private Integer id;
/** 币种 */
@ApiModelProperty(value = "币种")
private String currency;
/** 比率 */
@ApiModelProperty(value = "比率")
private BigDecimal ratio;
/** 状态0:正常 1:删除 */
@ApiModelProperty(value = "状态0:正常 1:删除")
private String status;
/** 创建时间 */
@ApiModelProperty(value = "创建时间")
private Date crateTime;
}