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
| package cn.com.basic.face.discern.query.item;
|
|
| public class SurveillanceAttendanceQueryItem {
|
| // 人员主键
| private String registerId;
|
| /**
| * Get 人员主键
| */
| public String getRegisterId() {
| return registerId;
| }
|
| /**
| * Set 人员主键
| */
| public void setRegisterId(String registerId) {
| this.registerId = registerId;
| }
|
| public String toString() {
| return
| ",人员主键 =" + registerId;
| }
| }
|
|