StatisticsFinancePageselectExcel.java 1.18 KB
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;

}