package cn.huge.module.knowledge.domain.dto;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class CpwsCaseinfoDTO {
|
/**
|
* 案件ID
|
*/
|
private String cpwsCaseInfoId;
|
|
/**
|
* 案件文本ID
|
*/
|
private String cpwsCaseTextId;
|
|
/**
|
* 案件名称
|
*/
|
private String caseName;
|
|
/**
|
* 法院
|
*/
|
private String court;
|
|
/**
|
* 案由
|
*/
|
private String caseReason;
|
|
/**
|
* 判决日期
|
*/
|
private Date judgmentDate;
|
}
|