ChargeEverydayAmount.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package com.zsElectric.boot.app.model.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.zsElectric.boot.common.base.BaseEntity;
  4. import lombok.Getter;
  5. import lombok.Setter;
  6. import java.math.BigDecimal;
  7. /**
  8. * 充电每日对账金额实体
  9. *
  10. * @author boxun
  11. * @since 2025-01-14
  12. */
  13. @TableName("c_charge_everyday_amount")
  14. @Getter
  15. @Setter
  16. public class ChargeEverydayAmount extends BaseEntity {
  17. /**
  18. * 对账日期
  19. */
  20. private String accountDate;
  21. /**
  22. * 充电站ID
  23. */
  24. private Long stationId;
  25. /**
  26. * 充电站名称
  27. */
  28. private String stationName;
  29. /**
  30. * 订单总数
  31. */
  32. private Integer orderCount;
  33. /**
  34. * 充电总度数
  35. */
  36. private BigDecimal totalCharge;
  37. /**
  38. * 总消费金额
  39. */
  40. private BigDecimal totalCost;
  41. /**
  42. * 总服务费
  43. */
  44. private BigDecimal totalServiceFee;
  45. /**
  46. * 总电费
  47. */
  48. private BigDecimal totalElecFee;
  49. /**
  50. * 状态:0待对账 1已对账
  51. */
  52. private Long status;
  53. /**
  54. * 备注
  55. */
  56. private String remark;
  57. /**
  58. * 创建人ID
  59. */
  60. private Long createBy;
  61. /**
  62. * 更新人ID
  63. */
  64. private Long updateBy;
  65. }