package com.gear.finance.domain; import java.math.BigDecimal; import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; 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; /** * 产品投资记录对象 finance_product_user_record * * @author czx * @date 2023-11-16 */ @Data @TableName("finance_product_user_record") public class FinanceProductUserRecord extends BusiBaseEntity { private static final long serialVersionUID=1L; /** $column.columnComment */ @TableId(type = IdType.ASSIGN_ID) private String id; /** $column.columnComment */ @Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()") private String userId; /** $column.columnComment */ @Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()") private String productId; /** 投资金额 */ @Excel(name = "投资金额") private BigDecimal investMoney; /** 下次分红时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "下次分红时间" , width = 30, dateFormat = "yyyy-MM-dd") private Date nextTime; /** 已分红次数 */ @Excel(name = "已分红次数") private Integer reciveCount; /** 已分红金额 */ @Excel(name = "已分红金额") private BigDecimal reciveMoney; /** 总分红次数 */ @Excel(name = "总分红次数") private Integer allCount; /** 总分红金额 */ @Excel(name = "总分红金额") private BigDecimal allMoney; /** 加息券叠加利率 */ @Excel(name = "加息券叠加利率") private BigDecimal couponRate; /** 优惠券优惠金额 */ @Excel(name = "优惠券优惠金额") private BigDecimal couponMoney; /** 会员等级叠加利率 */ @Excel(name = "会员等级叠加利率") private BigDecimal addRate; }