TblDispute.java
1.9 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package com.ruoyi.compliancemanagement.domain;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.util.Date;
import java.math.BigDecimal;
import com.ruoyi.common.core.domain.BaseEntity;
/**
* 【请填写功能名称】对象 tbl_dispute
*
* @author ruoyi
* @date 2024-07-05
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("tbl_dispute")
public class TblDispute extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* 纠纷名称
*/
private String disputename;
/**
* 申请单位
*/
private String applyingorg;
/**
* 申请部门
*/
private String applyingdepartment;
/**
* 申请人
*/
private String applicant;
/**
* 申请人联系方式
*/
private String contactphone;
/**
* 案件类型
*/
private String casetype;
/**
* 是否涉外
*/
private String isforeign;
/**
* 预估涉案总金额
*/
private String estimatedtotalamount;
/**
* 是否为重大案件
*/
private String ismajorcase;
/**
* 是否已过诉讼时效
*/
private String ispassed;
/**
* 是否已形成上访/投诉
*/
private String isformed;
/**
* 是否发/收律师函
*/
private String issentlawyerletter;
/**
* 案由
*/
private String casecause;
/**
* 是否已沟通
*/
private String iscommunication;
/**
* 约定争议解决方式
*/
private String resolutionmethod;
/**
* 我方主体全称
*/
private String subject;
/**
* 对方主体全称
*/
private String othersubject;
/**
* 对方主体性质
*/
private String otherpartySubjectnature;
/**
*
*/
@TableId(value = "id")
private Long id;
}