You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.2 KiB
60 lines
1.2 KiB
3 years ago
|
package com.fr.plugin.entitys;
|
||
|
|
||
|
import com.fr.stable.db.entity.BaseEntity;
|
||
|
import com.fr.stable.db.entity.TableAssociation;
|
||
|
import com.fr.third.javax.persistence.Column;
|
||
|
import com.fr.third.javax.persistence.Entity;
|
||
|
import com.fr.third.javax.persistence.Table;
|
||
|
|
||
|
@Entity
|
||
|
@Table(
|
||
|
name = "fine_access_log"
|
||
|
)
|
||
|
@TableAssociation(
|
||
|
associated = true
|
||
|
)
|
||
|
public class AccessLogEntity extends BaseEntity {
|
||
|
@Column(name = "userName")
|
||
|
private String userName = "";
|
||
|
@Column(name = "macAddr")
|
||
|
private String macAddr = "";
|
||
|
@Column(name = "deviceName")
|
||
|
private String deviceName = "";
|
||
|
@Column(name = "createTime")
|
||
|
private String time = "";
|
||
|
|
||
|
public String getDeviceName() {
|
||
|
return deviceName;
|
||
|
}
|
||
|
|
||
|
public void setDeviceName(String deviceName) {
|
||
|
this.deviceName = deviceName;
|
||
|
}
|
||
|
|
||
|
public String getUserName() {
|
||
|
return userName;
|
||
|
}
|
||
|
|
||
|
public void setUserName(String userName) {
|
||
|
this.userName = userName;
|
||
|
}
|
||
|
|
||
|
public String getMacAddr() {
|
||
|
return macAddr;
|
||
|
}
|
||
|
|
||
|
public void setMacAddr(String macAddr) {
|
||
|
this.macAddr = macAddr;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
public String getTime() {
|
||
|
return time;
|
||
|
}
|
||
|
|
||
|
public void setTime(String time) {
|
||
|
this.time = time;
|
||
|
}
|
||
|
}
|