123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Models;
- namespace DAL
- {
- /// <summary>
- /// 报价基础信息
- /// </summary>
- public class OfferData
- {
- int id;
- /// <summary>
- /// 主键编号
- /// </summary>
- public int Id
- {
- get { return id; }
- set { id = value; }
- }
- int pId;
- /// <summary>
- /// 版面id
- /// </summary>
- public int PId
- {
- get { return pId; }
- set { pId = value; }
- }
- int cid;
- /// <summary>
- /// 航空公司id
- /// </summary>
- public int Cid
- {
- get { return cid; }
- set { cid = value; }
- }
- decimal publishedPrice;
- /// <summary>
- /// 刊例价
- /// </summary>
- public decimal PublishedPrice
- {
- get { return publishedPrice; }
- set { publishedPrice = value; }
- }
- decimal basePrice;
- /// <summary>
- /// 底价
- /// </summary>
- public decimal BasePrice
- {
- get { return basePrice; }
- set { basePrice = value; }
- }
- decimal addedTax;
- /// <summary>
- /// 增值税
- /// </summary>
- public decimal AddedTax
- {
- get { return addedTax; }
- set { addedTax = value; }
- }
- int isDel;
- /// <summary>
- /// 删除状态
- /// </summary>
- public int IsDel
- {
- get { return isDel; }
- set { isDel = value; }
- }
- SetData sd = new SetData();
- /// <summary>
- /// 版面信息
- /// </summary>
- public SetData Sd
- {
- get { return sd; }
- set { sd = value; }
- }
- }
- }
|