JudicialCasesStatistics.java 4.83 KB
package com.lhcredit.project.business.judicialCasesStatistics.domain;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.lhcredit.framework.web.domain.BaseEntity;
import lombok.NoArgsConstructor;

import java.util.Date;

/**
 * 司法案件数量统计表 judicial_cases_statistics
 *
 * @author lhcredit
 * @date 2024-06-13
 */
@Data
@Builder
@ApiModel(value = "司法案件数量统计")
@NoArgsConstructor
@AllArgsConstructor
public class JudicialCasesStatistics extends BaseEntity{
    private static final long serialVersionUID=1L;

    /** 主键编号 */
    @ApiModelProperty(value = "主键编号")
    private Integer id;
    /** 案件类型 */
    @ApiModelProperty(value = "案件类型")
    private Integer caseType;
    /** 案件类型名称 */
    @ApiModelProperty(value = "案件类型名称")
    private String caseTypeStr;
    /** 1年内 */
    @ApiModelProperty(value = "1年内")
    private Integer oneyear;
    /** 1-3年 */
    @ApiModelProperty(value = "1-3年")
    private Integer onetothreeyear;
    /** 3-5年 */
    @ApiModelProperty(value = "3-5年")
    private Integer threetofiveyear;
    /** 5年以上 */
    @ApiModelProperty(value = "5年以上")
    private Integer fiveyear;
    /** 案件总数 */
    @ApiModelProperty(value = "案件总数")
    private Integer countTotal;
    /** 已结案总数 */
    @ApiModelProperty(value = "已结案总数")
    private Integer countJieTotal;
    /** 未结案总数 */
    @ApiModelProperty(value = "未结案总数")
    private Integer countWeiTotal;
    /** 原告总数 */
    @ApiModelProperty(value = "原告总数")
    private Integer countYuangao;
    /** 原告已结案总数 */
    @ApiModelProperty(value = "原告已结案总数")
    private Integer countJieYuangao;
    /** 原告未结案总数 */
    @ApiModelProperty(value = "原告未结案总数")
    private Integer countWeiYuangao;
    /** 被告总数 */
    @ApiModelProperty(value = "被告总数")
    private Integer countBeigao;
    /** 被告已结案总数 */
    @ApiModelProperty(value = "被告已结案总数")
    private Integer countJieBeigao;
    /** 被告未结案总数 */
    @ApiModelProperty(value = "被告未结案总数")
    private Integer countWeiBeigao;
    /** 第三人已结案总数 */
    @ApiModelProperty(value = "第三人已结案总数")
    private Integer countJieOther;
    /** 第三人未结案总数 */
    @ApiModelProperty(value = "第三人未结案总数")
    private Integer countWeiOther;
    /** 涉诉总数 */
    @ApiModelProperty(value = "涉诉总数")
    private Integer sstotal;
    /** 涉诉已结案数量 */
    @ApiModelProperty(value = "涉诉已结案数量")
    private Integer ssyja;
    /** 涉诉未结案数量 */
    @ApiModelProperty(value = "涉诉未结案数量")
    private Integer sswja;
    /** 原告已结案胜诉 */
    @ApiModelProperty(value = "原告已结案胜诉")
    private Integer ygyjass;
    /** 原告已结案败诉 */
    @ApiModelProperty(value = "原告已结案败诉")
    private Integer ygyjabs;
    /** 原告已结案未知 */
    @ApiModelProperty(value = "原告已结案未知")
    private Integer ygyjawz;
    /** 原告未结案 */
    @ApiModelProperty(value = "原告未结案")
    private Integer ygwja;
    /** 被告已结案胜诉 */
    @ApiModelProperty(value = "被告已结案胜诉")
    private Integer bgyjass;
    /** 被告已结案败诉 */
    @ApiModelProperty(value = "被告已结案败诉")
    private Integer bgyjabs;
    /** 被告已结案未知 */
    @ApiModelProperty(value = "被告已结案未知")
    private Integer bgyjawz;
    /** 被告未结案 */
    @ApiModelProperty(value = "被告未结案")
    private Integer bgwja;
    /** 第三人已结案胜诉 */
    @ApiModelProperty(value = "第三人已结案胜诉")
    private Integer dsryjass;
    /** 第三人已结案败诉 */
    @ApiModelProperty(value = "第三人已结案败诉")
    private Integer dsryjabs;
    /** 第三人已结案未知 */
    @ApiModelProperty(value = "第三人已结案未知")
    private Integer dsryjawz;
    /** 第三人未结案 */
    @ApiModelProperty(value = "第三人未结案")
    private Integer dsrwja;
    /**  */
    @ApiModelProperty(value = "")
    private String paramsdata;
    /** 报告Id */
    @ApiModelProperty(value = "报告Id")
    private String reportId;
    /** 0:已删除 1:正常 */
    @ApiModelProperty(value = "0:已删除 1:正常")
    private Integer dataStatus;
    /** 企业名称 */
    @ApiModelProperty(value = "企业名称")
    private String ename;
    /** 最后更新时间 */
    @ApiModelProperty(value = "最后更新时间")
    private Date lastUpdateTime;
    /** 授信申请id */
    @ApiModelProperty(value = "授信申请id")
    private Long cgId;

}