You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fu-hsi-service/src/main/java/com/supervision/police/vo/ModelCaseVO.java

57 lines
1.4 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.supervision.police.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
import java.util.List;
@Data
public class ModelCaseVO {
@Schema(description = "主键")
private String id;
@Schema(description = "案件编号")
private String caseNo;
@Schema(description = "案件名称")
private String caseName;
@Schema(description = "案件类型")
private String caseType;
@Schema(description = "认定结果")
private List<String> identifyResult;
@Schema(description = "行为人")
private String lawActor;
@Schema(description = "涉案人员")
private String involvedPerson;
@Schema(description = "当事人")
private String lawParty;
@Schema(description = "删除状态,默认查询未删除数据")
private Boolean isDelete = false;
@Schema(description = "案件数据状态 0:没有基础数据 1:数据未更新 2数据已更新")
private String caseDataStatus;
@Schema(description = "案件分析状态 0:未分析 1正在分析 2分析成功 3分析失败")
private String caseAnalysisStatus;
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private LocalDateTime updateStartTime;
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private LocalDateTime updateEndTime;
}