ExchangeRate.java
825 Bytes
package com.lhcredit.project.business.exchangeRate.domain;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.lhcredit.framework.web.domain.BaseEntity;
import java.math.BigDecimal;
/**
* 汇率表 exchange_rate
*
* @author lhcredit
* @date 2025-03-18
*/
@Data
@ApiModel(value = "汇率")
public class ExchangeRate extends BaseEntity{
private static final long serialVersionUID=1L;
/** id */
@ApiModelProperty(value = "id")
private Integer id;
/** 源币种 */
@ApiModelProperty(value = "源币种")
private String sourceUrrency;
/** 美元币种 */
@ApiModelProperty(value = "美元币种")
private String usdCurrency;
/** 汇率 */
@ApiModelProperty(value = "汇率")
private BigDecimal rate;
}