StatisticsFinancePageselect.java 1.58 KB
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;
}