广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package cn.huge.module.ai.domain.po;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @title: 裁判文书网案件文本表数据库对应关系类
 * @description: PO中的属性与数据表是一一对应关系,如需根据业务处理不同,请使用BO对象。
 * @company:hugeinfo
 * @author: huangh
 * @time: 2024-12-10 17:28:00
 * @version 1.0.0
 */
@TableName(value = "ai.cpws_case_text")
@Data
public class CpwsCaseText {
 
    /**
     * 案件文本ID
     */
    @TableId(value = "cpws_case_text_id")
    private String cpwsCaseTextId;
 
    /**
     * 案号,与信息表关联
     */
    @TableField(value = "cpws_case_info_id")
    private String cpwsCaseInfoId;
 
    /**
     * 审理经过
     */
    @TableField(value = "trial_process")
    private String trialProcess;
 
    /**
     * 案件基本情况
     */
    @TableField(value = "basic_case_info")
    private String basicCaseInfo;
 
    /**
     * 审理查明
     */
    @TableField(value = "trial_finding")
    private String trialFinding;
 
    /**
     * 判决
     */
    @TableField(value = "judgment")
    private String judgment;
 
    /**
     * 法律依据
     */
    @TableField(value = "legal_basis")
    private String legalBasis;
 
    /**
     * 删除状态,1:未删除(默认值),99:已删除
     */
    @TableLogic(value = "1",delval = "99")
    @TableField(value = "delete_status")
    private String deleteStatus;
 
    /**
     * 创建时间
     */
    @TableField(value = "create_time")
    private Date createTime;
 
    /**
     * 更新时间
     */
    @TableField(value = "update_time")
    private Date updateTime;
 
}