using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Groups
{
///
/// 团组会议需求表
///
[SugarTable("Grp_DeleMeetingNeeds")]
public class Grp_DeleMeetingNeeds:EntityBase
{
///
/// 团组公共需求表Id
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int DeleClientNeedId { get; set; }
///
/// 会议类型
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int MeetingType { get; set; }
///
/// 开会时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime MeetingDt { get; set; }
///
/// 开会时长
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string MeethingSeptal { get; set; }
///
/// 参会人数
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int Person { get; set; }
///
/// 会议金额预算
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string MeetingPrice { get; set; }
///
/// 联系人
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
public string Contact { get; set; }
///
/// 联系方式
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
public string Mobile { get; set; }
///
/// 其他需求
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
public string NeedsChoose { get; set; }
}
}