- 在多个信用实体类中添加companyId字段,包括CreditBreachOfTrust、CreditCaseFiling、CreditCompetitor等 - 更新对应的Mapper XML文件,添加基于companyId的查询条件 - 在各个参数类中添加companyId参数支持 - 为CreditJudicialImportParam添加缺失的Schema注解 - 实现基于企业ID的数据过滤功能,提升数据查询的准确性
98 lines
2.6 KiB
Java
98 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:49:32
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@Schema(name = "CreditCourtSession对象", description = "开庭公告司法大数据")
|
|
public class CreditCourtSession 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("Appellee")
|
|
private String appellee;
|
|
|
|
@Schema(description = "其他当事人/第三人")
|
|
private String otherPartiesThirdParty;
|
|
|
|
@Schema(description = "发生时间")
|
|
private String occurrenceTime;
|
|
|
|
@Schema(description = "案号")
|
|
private String caseNumber;
|
|
|
|
@Schema(description = "案由")
|
|
private String causeOfAction;
|
|
|
|
@Schema(description = "涉案金额")
|
|
private String involvedAmount;
|
|
|
|
@Schema(description = "法院")
|
|
private String courtName;
|
|
|
|
@Schema(description = "数据状态")
|
|
private String dataStatus;
|
|
|
|
@Schema(description = "企业ID")
|
|
private Integer companyId;
|
|
|
|
@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;
|
|
|
|
}
|