package com.gear.swx.domain;
|
|
import java.math.BigDecimal;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
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_money_log
|
*
|
* @author czx
|
* @date 2023-11-20
|
*/
|
@Data
|
@TableName("swx_money_log")
|
public class SwxMoneyLog extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID,value = "id")
|
private String id;
|
|
/** 类型 */
|
@TableField("type")
|
@Excel(name = "类型")
|
private Integer type;
|
|
/** 状态 */
|
@TableField("status")
|
@Excel(name = "状态")
|
private Integer status;
|
|
@TableField("money")
|
private BigDecimal money;
|
|
/** 收入/支出 */
|
@TableField("symbol")
|
@Excel(name = "收入/支出")
|
private Integer symbol;
|
|
/** 标题 */
|
@TableField("title")
|
@Excel(name = "标题")
|
private String title;
|
|
/** 内容 */
|
@TableField("info")
|
@Excel(name = "内容")
|
private String info;
|
|
/** 原金额 */
|
@TableField("old_amount")
|
@Excel(name = "原金额")
|
private BigDecimal oldAmount;
|
|
/** 现余额 */
|
@TableField("now_amount")
|
@Excel(name = "现余额")
|
private BigDecimal nowAmount;
|
|
/** 对应主表id */
|
@TableField("busi_id")
|
@Excel(name = "对应主表id")
|
private String busiId;
|
|
@TableField("user_id")
|
private String userId;
|
|
}
|