Commit 4b09a9a29be51b6649cc4a594cf5ad1c85502361
1 parent
3f84e4b0
Exists in
master
增加获取设备指纹
Showing
1 changed file
with
17 additions
and
0 deletions
Show diff stats
cloud/zkAttendance/src/main/java/com/sincere/att/vo/CheckOrderVo.java
0 → 100644
@@ -0,0 +1,17 @@ | @@ -0,0 +1,17 @@ | ||
1 | +package com.sincere.att.vo; | ||
2 | + | ||
3 | +public class CheckOrderVo { | ||
4 | + private String studentName; | ||
5 | + public String getStudentName() { | ||
6 | + return studentName; | ||
7 | + } | ||
8 | + | ||
9 | + public void setStudentName(String studentName) { | ||
10 | + this.studentName = studentName; | ||
11 | + } | ||
12 | + | ||
13 | + @Override | ||
14 | + public String toString() { | ||
15 | + return "C:" + this.studentName + ":CHECK"; | ||
16 | + } | ||
17 | +} |