Grp_DecreasePayments.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. /// --其他款项
  11. /// </summary>
  12. [SugarTable("Grp_DecreasePayments")]
  13. public class Grp_DecreasePayments: EntityBase
  14. {
  15. /// <summary>
  16. /// 团组外键编号
  17. /// </summary>
  18. [SugarColumn(IsNullable =true,ColumnDataType ="int")]
  19. public int DiId { get; set; }
  20. /// <summary>
  21. /// 供应商地区
  22. /// 0 未选择 1 国内(默认) 2 国外
  23. /// </summary>
  24. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  25. public int SupplierArea { get; set; } = 0;
  26. /// <summary>
  27. /// 供应商类型
  28. /// setdata 外键Id StID = 21
  29. /// </summary>
  30. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  31. public int SupplierTypeId { get; set; }
  32. /// <summary>
  33. /// 费用名称
  34. /// </summary>
  35. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
  36. public string PriceName { get; set; }
  37. /// <summary>
  38. /// 单价
  39. /// </summary>
  40. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  41. public decimal Price { get; set; }
  42. /// <summary>
  43. /// 数量
  44. /// </summary>
  45. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  46. public decimal Quantity { get; set; }
  47. /// <summary>
  48. /// 费用总计
  49. /// </summary>
  50. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  51. public decimal FeeTotal { get; set; }
  52. /// <summary>
  53. /// 费用币种
  54. /// </summary>
  55. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  56. public int Currency { get; set; }
  57. /// <summary>
  58. /// 附件地址
  59. /// </summary>
  60. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")]
  61. public string FilePath { get; set; }
  62. }
  63. }