using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
public class DeleClientNeeds
{
///
/// 标识
///
public int Id { get; set; }
///
/// 团号
///
public int Diid { get; set; }
///
/// 公务地点需求
///
public string OffActPlace { get; set; }
///
/// 公务邀请函需求
///
public string OffActLetter { get; set; }
///
/// 翻译需求
///
public string TransNeed { get; set; }
///
/// 翻译语种
///
public string TranLanguage { get; set; }
///
/// 安排翻译场次
///
public string TranScene { get; set; }
///
/// 签证需求
///
public string VisaNeeds { get; set; }
///
/// 客户喜好
///
public string Hobby { get; set; }
///
/// 车辆需求
///
public string CarNeeds { get; set; }
///
/// 导游需求
///
public string GuideNeeds { get; set; }
///
/// 用餐要求
///
public string MealNeeds { get; set; }
///
/// 备注
///
public string NeedsRemark { get; set; }
///
/// 入住时间
///
public string CheckInTime { get; set; }
///
/// 酒店级别
///
public string HotelLevel { get; set; }
///
/// 酒店位置
///
public string HotelPosition { get; set; }
///
/// 房间数
///
public string RoomNum { get; set; }
///
/// 记录人
///
public int OPer { get; set; }
///
/// 记录时间
///
public string OPdate { get; set; }
///
/// 删除标识
///
public int Isdel { get; set; }
}
}