| | |
| | | */ |
| | | |
| | | public class LoginEntity implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 2156194736679188516L; |
| | | |
| | | private int id; |
| | | |
| | | private String uname; |
| | | |
| | | private int appid; |
| | | |
| | |
| | | |
| | | private Timestamp optime; |
| | | |
| | | |
| | | |
| | | private int count; |
| | | |
| | | public int getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(int id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getUname() { |
| | | return uname; |
| | | } |
| | | |
| | | public void setUname(String uname) { |
| | | this.uname = uname; |
| | | } |
| | | |
| | | public int getAppid() { |
| | |
| | | public void setOptime(Timestamp optime) { |
| | | this.optime = optime; |
| | | } |
| | | |
| | | public int getCount() { |
| | | return count; |
| | | } |
| | | |
| | | public void setCount(int count) { |
| | | this.count = count; |
| | | } |
| | | } |