- 新增失信被执行人实体类、控制器、Mapper及Service实现 - 新增司法大数据实体类、控制器、Mapper及Service实现 - 实现分页查询、列表查询、详情查询接口 - 支持新增、修改、删除及批量操作接口 - 支持Excel模板下载与数据导入功能 - 配置MQTT生产环境启用开关及连接地址调整 - 移除旧审计报告相关控制器、枚举及DTO定义
96 lines
2.6 KiB
Java
96 lines
2.6 KiB
Java
package com.gxwebsoft.credit.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.time.LocalDate;
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* 诉前调解司法大数据
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2025-12-19 19:51:25
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@Schema(name = "CreditMediation对象", description = "诉前调解司法大数据")
|
|
public class CreditMediation implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Schema(description = "ID")
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
@Schema(description = "数据类型")
|
|
private String dataType;
|
|
|
|
@Schema(description = "原告/上诉人")
|
|
private String plaintiffAppellant;
|
|
|
|
@Schema(description = "被告/被上诉人")
|
|
@TableField("defendant Appellee")
|
|
private String appellee;
|
|
|
|
@Schema(description = "其他当事人/第三人")
|
|
private String otherPartiesThirdParty;
|
|
|
|
@Schema(description = "发生时间")
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
private LocalDate occurrenceTime;
|
|
|
|
@Schema(description = "案号")
|
|
private String caseNumber;
|
|
|
|
@Schema(description = "案由")
|
|
private String causeOfAction;
|
|
|
|
@Schema(description = "涉案金额")
|
|
private BigDecimal involvedAmount;
|
|
|
|
@Schema(description = "法院")
|
|
private String courtName;
|
|
|
|
@Schema(description = "数据状态")
|
|
private String dataStatus;
|
|
|
|
@Schema(description = "备注")
|
|
private String comments;
|
|
|
|
@Schema(description = "是否推荐")
|
|
private Integer recommend;
|
|
|
|
@Schema(description = "排序(数字越小越靠前)")
|
|
private Integer sortNumber;
|
|
|
|
@Schema(description = "状态, 0正常, 1冻结")
|
|
private Integer status;
|
|
|
|
@Schema(description = "是否删除, 0否, 1是")
|
|
@TableLogic
|
|
private Integer deleted;
|
|
|
|
@Schema(description = "用户ID")
|
|
private Integer userId;
|
|
|
|
@Schema(description = "租户id")
|
|
private Integer tenantId;
|
|
|
|
@Schema(description = "创建时间")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private LocalDateTime createTime;
|
|
|
|
@Schema(description = "修改时间")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private LocalDateTime updateTime;
|
|
|
|
}
|