using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IOM_cs.irisDb.model { public class Person { #region field private Int64 ID; // 主键 private string DELFLAG; // 删除标志 private DateTime CREATETIME; // 创建时间 private string NAME; // 姓名 private string SEX; // 性别 private string ID_CARD_NO; // 证件号 private string REMARKS; // 备注 private string NATION; // 民族 private DateTime BIRTHDAY; // 生日 private string CARD_TYPE; // 证件类型 public Int64 id { get { return ID; } set { ID = value; } } public string delflag { get { return DELFLAG; } set { DELFLAG = value; } } public DateTime createtime { get { return CREATETIME; } set { CREATETIME = value; } } public string name { get { return NAME; } set { NAME = value; } } public string sex { get { return SEX; } set { SEX = value; } } public string idCardNo { get { return ID_CARD_NO; } set { ID_CARD_NO = value; } } public string remarks { get { return REMARKS; } set { REMARKS = value; } } public string nation { get { return NATION; } set { NATION = value; } } public DateTime birthday { get { return BIRTHDAY; } set { BIRTHDAY = value; } } public string cardType { get { return CARD_TYPE; } set { CARD_TYPE = value; } } #endregion } }