package com.gear.swx.domain;
|
|
import java.math.BigDecimal;
|
import com.gear.common.annotation.Excel;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.gear.common.core.domain.BusiBaseEntity;
|
|
/**
|
* 贷款管理对象 swx_loan_settings
|
*
|
* @author czx
|
* @date 2023-11-20
|
*/
|
@Data
|
@TableName("swx_loan_settings")
|
public class SwxLoanSettings extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** 贷款天数 */
|
@Excel(name = "贷款天数")
|
private Integer loanDay;
|
|
/** 贷款利率 */
|
@Excel(name = "贷款利率")
|
private BigDecimal loanRate;
|
|
/** 排序 */
|
@Excel(name = "排序")
|
private Integer sortNum;
|
|
/** 状态 */
|
@Excel(name = "状态")
|
private Integer status;
|
|
}
|