using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace irisDataBase.Model { public class Person { long id; string delflag; DateTime createtime; DateTime updatetime; string name; string sex; long deptid; string idCardNo; string remarks; string personType; string personCode; string photo; string oprationId; string duty; string nation; DateTime birthday; string cardType; public long Id { get => id; set => id = value; } public string Delflag { get => delflag; set => delflag = value; } public DateTime Createtime { get => createtime; set => createtime = value; } public DateTime Updatetime { get => updatetime; set => updatetime = value; } public string Name { get => name; set => name = value; } public string Sex { get => sex; set => sex = value; } public long Deptid { get => deptid; set => deptid = value; } public string IdCardNo { get => idCardNo; set => idCardNo = value; } public string Remarks { get => remarks; set => remarks = value; } public string PersonType { get => personType; set => personType = value; } public string PersonCode { get => personCode; set => personCode = value; } public string Photo { get => photo; set => photo = value; } public string OprationId { get => oprationId; set => oprationId = value; } public string Duty { get => duty; set => duty = value; } public string Nation { get => nation; set => nation = value; } public DateTime Birthday { get => birthday; set => birthday = value; } public string CardType { get => cardType; set => cardType = value; } } }