Blame view

cloud/zkAttendance/src/main/java/com/sincere/att/vo/CheckOrderVo.java 365 Bytes
4b09a9a2   邱一成   增加获取设备指纹
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.sincere.att.vo;

public class CheckOrderVo {
    private String studentName;
    public String getStudentName() {
        return studentName;
    }

    public void setStudentName(String studentName) {
        this.studentName = studentName;
    }

    @Override
    public String toString() {
        return "C:" + this.studentName + ":CHECK";
    }
}