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