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_recharge_record
|
*
|
* @author czx
|
* @date 2023-11-16
|
*/
|
@Data
|
@TableName("finance_recharge_record")
|
public class FinanceRechargeRecord 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;
|
|
/** 订单号 */
|
@Excel(name = "订单号")
|
private String orderNo;
|
|
/** 充值类型 */
|
@Excel(name = "充值类型")
|
private Integer type;
|
|
/** 充值方式 */
|
@Excel(name = "充值方式")
|
private Integer way;
|
|
/** 充值金额 */
|
@Excel(name = "充值金额")
|
private BigDecimal money;
|
|
/** 状态 */
|
@Excel(name = "状态")
|
private Integer status;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()")
|
private Date payTime;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()")
|
private Date rechargeTime;
|
|
/** 支付凭证 */
|
@Excel(name = "支付凭证")
|
private String voucher;
|
|
}
|