using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 团组费用预算类
///
public class GroupBudgetInfo
{
///
/// -- 主键
///
public int G_Id { get; set; }
///
/// -- 团组编号
///
public int G_Diid { get; set; }
///
/// -- 团组名
///
public string G_GroupName { get; set; }
///
/// -- 团组目的地
///
public string G_Destination { get; set; }
///
/// -- 团组预计开始时间
///
public string G_StartDate { get; set; }
///
/// -- 团组预计结束时间
///
public string G_EndDate { get; set; }
///
/// -- 团组预计 停留时间
///
public string G_StayDays { get; set; }
///
/// -- 团组行程描述和备注
///
public string G_TripDescribe { get; set; }
///
/// -- 团组人数
///
public string G_GroupNumber { get; set; }
///
/// -- 人均零用金
///
public string G_PettyCash { get; set; }
///
/// -- 邀请函费用
///
public string G_InvitationFee { get; set; }
///
/// -- 签证 详细信息
///
public string G_VisaDetails { get; set; }
///
/// -- 签证 系数
///
public string G_VisaCoefficient { get; set; }
///
/// -- 签证 成本价
///
public string G_VisaCostPrice { get; set; }
///
/// -- 签证 报价
///
public string G_VisaOffer { get; set; }
///
/// -- 机票 详细信息
///
public string G_AirDetails { get; set; }
///
/// -- 机票 系数
///
public string G_AirCoefficient { get; set; }
///
/// -- 机票 成本价
///
public string G_AirCostPrice { get; set; }
///
/// -- 机票 报价
///
public string G_AirOffer { get; set; }
///
/// -- 地接 详细信息
///
public string G_GroundingDetails { get; set; }
///
/// -- 地接 系数
///
public string G_GroundingCoefficient { get; set; }
///
/// -- 地接 成本价
///
public string G_GroundingCostPrice { get; set; }
///
/// -- 地接 报价
///
public string G_GroundingOffer { get; set; }
///
/// -- 酒店 详细信息
///
public string G_HotelDetails { get; set; }
///
/// -- 酒店 系数
///
public string G_HotelCoefficient { get; set; }
///
/// -- 酒店 成本价
///
public string G_HotelCostPrice { get; set; }
///
/// -- 酒店 报价
///
public string G_HotelOffer { get; set; }
///
/// -- 公务 详细信息
///
public string G_OfficialDetails { get; set; }
///
/// -- 公务 系数
///
public string G_OfficialCoefficient { get; set; }
///
/// -- 公务 成本价
///
public string G_OfficialCostPrice { get; set; }
///
/// -- 公务 报价
///
public string G_OfficialOffer { get; set; }
///
/// -- 操作人编号
///
public int G_Oper { get; set; }
///
/// -- 操作时间
///
public string G_OPDate { get; set; }
///
/// -- 删除标识 0 1
///
public int G_Isdel { get; set; }
}
}