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 InviteCosts { get; set; }
///
/// 币种
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int Currency { get; set; }
///
/// 快递费用
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public decimal SendCost { get; set; }
///
/// 公务标识
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int IsGoOfficaiaBussiness { get; set; }
}
}