using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 航司 /// public class AirCompany { int id; /// ///标识 /// public int Id { get { return id; } set { id = value; } } string shortCode; /// ///缩写 /// public string ShortCode { get { return shortCode; } set { shortCode = value; } } string cnName; /// ///中文名 /// public string CnName { get { return cnName; } set { cnName = value; } } string enName; /// /// 英文名 /// public string EnName { get { return enName; } set { enName = value; } } string oPer; /// /// 操作者 /// public string OPer { get { return oPer; } set { oPer = value; } } string oPDate; /// /// 操作时间 /// public string OPDate { get { return oPDate; } set { oPDate = value; } } int isdel; /// /// 删除标识 /// public int Isdel { get { return isdel; } set { isdel = value; } } } }