广州市综治平台后端
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
package cn.huge.module.ai.domain.vo;
 
import lombok.Data;
/**
 * @title: 重复来访检查请求类
 * @description: VO对象,保存请求参数。
 * @company:hugeinfo
 * @author: huangh
 * @time: 2024-12-25 15:03:57
 * @version 1.0.0
 */
@Data
public class AiRepeatVo {
    // 案件 id
    String caseId;
 
    // 案件描述
    String caseDes;
 
    // 案件诉求
    String caseClaim;
 
    // 申请方当事人-证件号码(可能包含多个,用逗号分隔)
    String plaintiffsCertiNo;
 
    // 被申请方当事人-证件号码(可能包含多个,用逗号分隔)
    String defendantsCertiNo;
}