| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package com.zsElectric.boot.app.model.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.zsElectric.boot.common.base.BaseEntity;
- import lombok.Getter;
- import lombok.Setter;
- import java.math.BigDecimal;
- /**
- * 充电每日对账金额实体
- *
- * @author boxun
- * @since 2025-01-14
- */
- @TableName("c_charge_everyday_amount")
- @Getter
- @Setter
- public class ChargeEverydayAmount extends BaseEntity {
- /**
- * 对账日期
- */
- private String accountDate;
- /**
- * 充电站ID
- */
- private Long stationId;
- /**
- * 充电站名称
- */
- private String stationName;
- /**
- * 订单总数
- */
- private Integer orderCount;
- /**
- * 充电总度数
- */
- private BigDecimal totalCharge;
- /**
- * 总消费金额
- */
- private BigDecimal totalCost;
- /**
- * 总服务费
- */
- private BigDecimal totalServiceFee;
- /**
- * 总电费
- */
- private BigDecimal totalElecFee;
- /**
- * 状态:0待对账 1已对账
- */
- private Long status;
- /**
- * 备注
- */
- private String remark;
- /**
- * 创建人ID
- */
- private Long createBy;
- /**
- * 更新人ID
- */
- private Long updateBy;
- }
|