package com.ruoyi.domain.excel;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.common.annotation.Excel;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @Author Jinquan_Ou
|
* @Description
|
* @Date 2023-05-13 20:40
|
* @Version 1.0.0
|
**/
|
public class ZfEconomyExcelBean implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 0:基金、1:台账
|
*/
|
@Excel(name = "收支类型",readConverterExp = "0=基金,1=台账")
|
private Integer type;
|
/**
|
* 收入/支出
|
*/
|
@Excel(name = "收入/支出")
|
private String price;
|
|
/**
|
* 用途
|
*/
|
@Excel(name = "用途")
|
private String useFor;
|
|
/**
|
* 使用人
|
*/
|
@Excel(name = "使用人")
|
private String usePeople;
|
|
/**
|
* 0:现金,1:自动划扣
|
*/
|
@Excel(name = "现金/自动划扣",readConverterExp = "0=现金,1=自动划扣")
|
private Integer kind;
|
|
/**
|
* 余额
|
*/
|
@Excel(name = "余额")
|
private String balance;
|
|
/**
|
* 备注
|
*/
|
@Excel(name = "备注")
|
private String remark;
|
|
/**
|
* 发生时间
|
*/
|
@Excel(name = "时间", dateFormat = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
private Date happenTime;
|
}
|