zxl
2025-04-24 9d0d134447c84abcf34ddfda1f31099af7037c18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ycl.platform.domain.param.HK;
 
import lombok.Data;
 
@Data
public class ScoreParam extends BaseParam{
    //yyyy-MM-dd 签 ID 为空,默认查询全量指标成绩
    private String startDate;
    private String endDate;
//    //重点点位标注 非必填 1重点 0全量 默认全量
//    private Integer focusFlag;
//    //人脸业务树编码
//    private String faceTree;
//    //车辆业务树编码
//    private String carTree;
 
    //标签id 签 ID 为空,默认查询全量指标成绩
    private Integer labelId;
}