using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 生成报价信息表 /// public class Offer { int id; /// /// 主键编号 /// public int Id { get { return id; } set { id = value; } } int uid; /// /// 企业编号 /// public int Uid { get { return uid; } set { uid = value; } } string projects; /// /// 项目名称 /// public string Projects { get { return projects; } set { projects = value; } } int cid; /// /// 航空公司id /// public int Cid { get { return cid; } set { cid = value; } } int pid; /// /// 版面id /// public int Pid { get { return pid; } set { pid = value; } } decimal discount; /// /// 折扣 /// public decimal Discount { get { return discount; } set { discount = value; } } decimal salePrice; /// /// 销售报价 /// public decimal SalePrice { get { return salePrice; } set { salePrice = value; } } decimal profit; /// /// 毛利 /// public decimal Profit { get { return profit; } set { profit = value; } } int version; /// /// 生成次数 /// public int Version { get { return version; } set { version = value; } } int isNew; /// /// 生成次数 /// public int IsNew { get { return isNew; } set { isNew = value; } } int isDel; /// /// 删除状态 /// public int IsDel { get { return isDel; } set { isDel = value; } } DateTime inputTime; /// /// 录入时间 /// public DateTime InputTime { get { return inputTime; } set { inputTime = value; } } string proCode; /// /// 项目编号 /// public string ProCode { get { return proCode; } set { proCode = value; } } } }