using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Groups
{
///
/// 商邀费用录入表
///
[SugarTable("Grp_InvitationOfficialActivities")]
public class Grp_InvitationOfficialActivities:EntityBase
{
///
/// 团组外键编号
///
[SugarColumn(IsNullable =true,ColumnDataType ="int")]
public int DiId { get; set; }
///
/// 邀请方地区
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
public string InviterArea { get; set; }
///
/// 邀请方
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
public string Inviter { get; set; }
///
/// 邀请时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime InviteTime { get; set; }
///
/// 附件
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
public string Attachment { get; set; }
///
/// 邀请费用
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public decimal InviteCost { get; set; }
///
/// 邀请费用币种
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int InviteCurrency { get; set; }
///
/// 快递费用
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public decimal SendCost { get; set; }
///
/// 快递费用币种
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int SendCurrency { get; set; }
///
/// 公务活动费
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public decimal EventsCost { get; set; }
///
/// 公务活动费币种
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int EventsCurrency { get; set; }
///
/// 公务翻译费
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public decimal TranslateCost { get; set; }
///
/// 公务翻译费币种
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int TranslateCurrency { get; set; }
///
/// 公务标识
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int IsGoOfficaiaBussiness { get; set; }
}
}