Grp_InvitationOfficialActivities.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Groups
  7. {
  8. /// <summary>
  9. /// 商邀费用录入表
  10. /// </summary>
  11. [SugarTable("Grp_InvitationOfficialActivities")]
  12. public class Grp_InvitationOfficialActivities:EntityBase
  13. {
  14. /// <summary>
  15. /// 团组外键编号
  16. /// </summary>
  17. [SugarColumn(IsNullable =true,ColumnDataType ="int")]
  18. public int DiId { get; set; }
  19. /// <summary>
  20. /// 邀请方地区
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
  23. public string InviterArea { get; set; }
  24. /// <summary>
  25. /// 邀请方
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
  28. public string Inviter { get; set; }
  29. /// <summary>
  30. /// 邀请时间
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
  33. public DateTime InviteTime { get; set; }
  34. /// <summary>
  35. /// 附件
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
  38. public string Attachment { get; set; }
  39. /// <summary>
  40. /// 邀请费用
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  43. public decimal InviteCost { get; set; }
  44. /// <summary>
  45. /// 邀请费用币种
  46. /// </summary>
  47. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  48. public int InviteCurrency { get; set; }
  49. /// <summary>
  50. /// 快递费用
  51. /// </summary>
  52. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  53. public decimal SendCost { get; set; }
  54. /// <summary>
  55. /// 快递费用币种
  56. /// </summary>
  57. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  58. public int SendCurrency { get; set; }
  59. /// <summary>
  60. /// 公务活动费
  61. /// </summary>
  62. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  63. public decimal EventsCost { get; set; }
  64. /// <summary>
  65. /// 公务活动费币种
  66. /// </summary>
  67. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  68. public int EventsCurrency { get; set; }
  69. /// <summary>
  70. /// 公务翻译费
  71. /// </summary>
  72. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  73. public decimal TranslateCost { get; set; }
  74. /// <summary>
  75. /// 公务翻译费币种
  76. /// </summary>
  77. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  78. public int TranslateCurrency { get; set; }
  79. /// <summary>
  80. /// 公务标识
  81. /// </summary>
  82. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  83. public int IsGoOfficaiaBussiness { get; set; }
  84. /// <summary>
  85. /// 资料关联id
  86. /// </summary>
  87. public int DataId { get; set; }
  88. }
  89. }