Pu Zhibing
2024-10-16 c4664502dfdaffff555b532e65b51a57ac8b29c2
ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/model/TSettlementConfirm.java
@@ -25,14 +25,14 @@
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_settlement confirm")
@TableName("t_settlement_confirm")
@ApiModel(value="TSettlementConfirm对象", description="")
public class TSettlementConfirm extends BasePojo {
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(value = "主键")
    @TableId(value = "id", type = IdType.AUTO)
    @TableId(value = "id")
    private Long id;
    @ApiModelProperty(value = "站点id")
@@ -60,6 +60,7 @@
    @ApiModelProperty(value = "收入合计")
    @TableField("income")
    private BigDecimal income;
    @ApiModelProperty(value = "场地费")
    @TableField("venue")
    private BigDecimal venue;
@@ -72,9 +73,12 @@
    @ApiModelProperty(value = "日常维护费")
    @TableField("maintain")
    private BigDecimal maintain;
    @ApiModelProperty(value = "成本(可分配合计)")
    @ApiModelProperty(value = "成本")
    @TableField("cost")
    private BigDecimal cost;
    @ApiModelProperty(value = "合计可分配金额")
    @TableField("distribution")
    private BigDecimal distribution;
    @ApiModelProperty(value = "利润")
    @TableField("profit_money")
    private BigDecimal profitMoney;
@@ -129,39 +133,16 @@
    @TableField("coupon_discount")
    private BigDecimal couponDiscount;
    @ApiModelProperty(value = "类型(1=开始,2=结束)")
    @TableField("type")
    private Integer type;
    @ApiModelProperty(value = "开始时间")
    @TableField("start_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private LocalDateTime startTime;
    @ApiModelProperty(value = "结束时间")
    @TableField("end_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private LocalDateTime endTime;
    @ApiModelProperty(value = "站点名称")
    @TableField(exist = false)
@@ -173,14 +154,24 @@
    @ApiModelProperty(value = "uid")
    @TableField(exist = false)
    private String uid;
    @ApiModelProperty(value = "合计可分配金额")
    @TableField(exist = false)
    private BigDecimal distribution;
    @ApiModelProperty(value = "结账日期 2024年09月06日17:10:06至2024年09月06日17:10:06")
    @TableField(exist = false)
    private String time;
    @ApiModelProperty(value = "充电记录明细")
    @TableField(exist = false)
    private List<TChargingOrder> list;
    @ApiModelProperty(value = "收入合计涨幅/跌幅 正数为涨幅负数为跌幅 字段为空 说明没有上月记录 不展示涨幅跌幅")
    @TableField(exist = false)
    private String incomePercentage;
    @ApiModelProperty(value = "总利润涨幅/跌幅 正数为涨幅负数为跌幅 字段为空 说明没有上月记录 不展示涨幅跌幅")
    @TableField(exist = false)
    private String totalPercentage;
    @ApiModelProperty(value = "利用率")
    @TableField(exist = false)
    private String rate;
    @ApiModelProperty(value = "参与电力市场交易退补电费")
    @TableField(exist = false)
    private Integer electronicRefund;
}