using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IOM_cs.irisDb.model { public class User { private Int64 id; private String userId; private String name; private String policeId; private String userNumber; private String password; private int userType; private DateTime creatTime; private int isAdmin; private String isSynch; private String synchMessage; private int active; public long Id { get { return id; } set { id = value; } } public string UserId { get { return userId; } set { userId = value; } } public string Name { get { return name; } set { name = value; } } public string PoliceId { get { return policeId; } set { policeId = value; } } public string UserNumber { get { return userNumber; } set { userNumber = value; } } public string Password { get { return password; } set { password = value; } } public int UserType { get { return userType; } set { userType = value; } } public DateTime CreatTime { get { return creatTime; } set { creatTime = value; } } public int IsAdmin { get { return isAdmin; } set { isAdmin = value; } } public string IsSynch { get { return isSynch; } set { isSynch = value; } } public string SynchMessage { get { return synchMessage; } set { synchMessage = value; } } public int Active { get { return active; } set { active = value; } } } }