StatisticsFinancePageselectExcel.java
1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.lhcredit.project.business.statisticsFinancePageselect.domain;
import com.lhcredit.framework.aspectj.lang.annotation.Excel;
import com.lhcredit.framework.web.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import java.util.Date;
/**
* 前台财务调用统计表 statistics_finance_pageselect
*
* @author lhcredit
* @date 2025-03-03
*/
@Data
@ApiModel(value = "前台财务调用统计")
public class StatisticsFinancePageselectExcel {
private static final long serialVersionUID=1L;
/** id */
private Integer id;
/** 企业名称 */
@Excel(name= "企业名称")
private String ename;
/** 机构id */
@Excel(name= "机构名称")
private String orgId;
/** 用户id */
private String userId;
/** 用户名称 */
@Excel(name= "用户名称")
private String userName;
/** 类型 */
@Excel(name= "类型")
private String dataType;
/** 创建时间 */
@Excel(name= "调用时间",dateFormat = "yyyy-MM-dd")
private Date creditTime;
/** 回调备注 */
@Excel(name= "结果")
private String resultRemark;
/** 是否计数统计 */
private Integer countStatus;
}