ShiftSettlementEntity.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. using AI.Platform.Core.Entity;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace ZhonTai.Admin.Contracts.Domain.VehicleTerminal.ShiftSettlement
  7. {
  8. /// <summary>
  9. /// 班结表
  10. /// </summary>
  11. [SugarTable(null, "班结表")]
  12. public class ShiftSettlementEntity : EntityBaseLite
  13. {
  14. /// <summary>
  15. /// 班结记录ID
  16. /// </summary>
  17. [SugarColumn(IsNullable = true)]
  18. public long Id { get; set; }
  19. /// <summary>
  20. /// 所属站点ID
  21. /// </summary>
  22. [SugarColumn(IsNullable = true)]
  23. public long? SiteId { get; set; }
  24. /// <summary>
  25. /// 班结ID
  26. /// </summary>
  27. [SugarColumn(IsNullable = true)]
  28. public string ShiftId { get; set; }
  29. /// <summary>
  30. /// 开班时间
  31. /// </summary>
  32. [SugarColumn(IsNullable = true)]
  33. public DateTime? StartTime { get; set; }
  34. /// <summary>
  35. /// 结班时间
  36. /// </summary>
  37. [SugarColumn(IsNullable = true)]
  38. public DateTime? EndTime { get; set; }
  39. /// <summary>
  40. /// 开班人
  41. /// </summary>
  42. [SugarColumn(IsNullable = true)]
  43. public long? StartUserId { get; set; }
  44. /// <summary>
  45. /// 结班人
  46. /// </summary>
  47. [SugarColumn(IsNullable = true)]
  48. public long? EndUserId { get; set; }
  49. /// <summary>
  50. /// 应收金额
  51. /// </summary>
  52. [SugarColumn(IsNullable = true)]
  53. public decimal? ReceivableAmount { get; set; }
  54. /// <summary>
  55. /// 实收金额
  56. /// </summary>
  57. [SugarColumn(IsNullable = true)]
  58. public decimal? ActualAmount { get; set; }
  59. /// <summary>
  60. /// 状态 0:未结束,1:结束
  61. /// </summary>
  62. [SugarColumn(IsNullable = true)]
  63. public byte? Status { get; set; }
  64. /// <summary>
  65. /// 开班泵码
  66. /// </summary>
  67. [SugarColumn(IsNullable = true)]
  68. public decimal StartPumpTotalizerVolume { get; set; }
  69. /// <summary>
  70. /// 班结泵码
  71. /// </summary>
  72. [SugarColumn(IsNullable = true)]
  73. public decimal EndPumpTotalizerVolume { get; set; }
  74. /// <summary>
  75. /// 设备唯一编号
  76. /// </summary>
  77. [SugarColumn(IsNullable = true)]
  78. public string DeviceId { get; set; }
  79. /// <summary>
  80. /// 班结名称
  81. /// </summary>
  82. [SugarColumn(IsNullable = true)]
  83. public string Name { get; set; }
  84. }
  85. }