package com.yeshi.buwan.domain;
|
|
import javax.persistence.Entity;
|
import javax.persistence.GeneratedValue;
|
import javax.persistence.GenerationType;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name="holmes")
|
public class Holmes {
|
|
@Id
|
@GeneratedValue(strategy=GenerationType.AUTO)
|
private Long id;
|
private String ip;
|
private Long createTime;
|
|
public Long getId() {
|
return id;
|
}
|
public void setId(Long id) {
|
this.id = id;
|
}
|
public String getIp() {
|
return ip;
|
}
|
public void setIp(String ip) {
|
this.ip = ip;
|
}
|
public Long getCreateTime() {
|
return createTime;
|
}
|
public void setCreateTime(Long createTime) {
|
this.createTime = createTime;
|
}
|
|
}
|