日期:2014-05-17 浏览次数:20802 次
public class User
{
public int ID { get; set; }
public string UserID { get; set; }
public string Name { get; set; }
public int Sex { get; set; }
public DateTime Birth { get; set; }
public string IDNumber { get; set; }
public string Address { get; set; }
public string Nativeplace { get; set; }
public string Nation { get; set; }
public string Domicile { get; set; }
public string Telephone { get; set; }
public string Email { get; set; }
public int Marriage { get; set; }
public string Education { get; set; }
public string School { get; set; }
public DateTime GraduationDate { get; set; }
public string Specialty { get; set; }
public DateTime EntryDate { get; set; }
public Department Department { get; set; }
public string Duties { get; set; }
public DateTime Departure { get; set; }
public string Password { get; set; }
public int onjob { get; set; }
public int UserType { get; set; }
}
public class Department
{
public int ID { get; set; }
public string Name { get; set; }
public int SuperiorDeptID { get; set; }
}
List<User> userList = new List<User>();
userList =