package com.moral.monitor.entity; import java.util.Date; /** * Created by zhang on 2017/7/4. */ public class Account { private int id; private String account; private String password; private String name; private String organization; private String email; private String mobile; private Date time; private String enable; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getAccount() { return account; } public void setAccount(String account) { this.account = account; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getOrganization() { return organization; } public void setOrganization(String organization) { this.organization = organization; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getMobile() { return mobile; } public void setMobile(String mobile) { this.mobile = mobile; } public Date getTime() { return time; } public void setTime(Date time) { this.time = time; } public String getEnable() { return enable; } public void setEnable(String enable) { this.enable = enable; } }