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