package com.thhy.staff.modules.biz.platuser.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@Data
|
public class DoorLis implements Serializable {
|
|
@Idkey
|
private String id;
|
|
private String ipAddress;
|
|
private String macAddress;
|
|
private Date dateTime;
|
|
private int noticeType;
|
|
private String name;
|
|
private String employeeNoString;
|
|
private int verify;
|
|
private String oriStr;
|
|
|
public DoorLis() {
|
}
|
|
public DoorLis(String oriStr) {
|
this.oriStr = oriStr;
|
}
|
}
|