StatisticsFinancePageselect.java
1.58 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
46
47
48
49
50
51
52
53
54
55
56
57
package com.lhcredit.project.business.statisticsFinancePageselect.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.lhcredit.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.lhcredit.framework.web.domain.BaseEntity;
import java.util.Date;
/**
* 前台财务调用统计表 statistics_finance_pageselect
*
* @author lhcredit
* @date 2025-03-03
*/
@Data
@ApiModel(value = "前台财务调用统计")
public class StatisticsFinancePageselect extends BaseEntity{
private static final long serialVersionUID=1L;
/** id */
private Integer id;
/** 企业名称 */
@Excel(name= "企业名称")
private String ename;
/** 是否计数统计 */
@Excel(name= "机构名称")
private String deptName;
/** 机构id */
// @Excel(name= "机构id")
private Long orgId;
/** 用户id */
// @Excel(name= "用户id")
private Long userId;
/** 用户名称 */
@Excel(name= "用户名称")
private String userName;
/** 类型 */
@Excel(name= "类型")
private String dataType;
/** 创建时间 */
@Excel(name= "创建时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date creditTime;
/** 回调备注 */
@Excel(name= "回调备注")
private String resultRemark;
/** 是否计数统计 */
@Excel(name= "是否计数统计")
private Integer countStatus;
/**
* 对账(Y:是,N:否)
*/
@Excel(name= "是否对账")
private String reconciliation;
}