1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ycl.platform.domain.param.HK;
|
| import lombok.Data;
|
| @Data
| public class ScoreParam extends BaseParam{
| //yyyy-MM-dd
| private String startDate;
| private String endDate;
| //重点点位标注 非必填 1重点 0全量 默认全量
| private Integer focusFlag;
| //人脸业务树编码
| private String faceTree;
| //车辆业务树编码
| private String carTree;
| }
|
|