MrShi
5 天以前 4fabfe4dbd2eb28d07a4350597d314958cc1c281
server/services/src/main/java/com/doumee/dao/business/model/WxBill.java
@@ -69,17 +69,33 @@
    @ApiModelProperty(value = "自行车收入", example = "1")
    @ExcelColumn(name="自行车收入")
    private BigDecimal bikeFee;
    @ApiModelProperty(value = "套餐收入", example = "1")
    @ExcelColumn(name="套餐收入")
    private BigDecimal discountFee;
    @ApiModelProperty(value = "骑行订单退款", example = "1")
    @ExcelColumn(name="骑行订单退款")
    private BigDecimal bikeRefundFee;
    @ApiModelProperty(value = "套餐卡退款总金额", example = "1")
    @ExcelColumn(name="套餐卡退款总金额")
    private BigDecimal discountRefundFee;
    @ApiModelProperty(value = "骑行订单退款手续费", example = "1")
    @ExcelColumn(name="骑行订单退款手续费")
    private BigDecimal bikeRefundCmmsAmt;
    @ApiModelProperty(value = "套餐卡退款总金额手续费", example = "1")
    @ExcelColumn(name="套餐卡退款总金额手续费")
    private BigDecimal discountRefundCmmsAmt;
    @ApiModelProperty(value = "同步微信账单日期", example = "2023-10-08")
    @TableField(exist = false)
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createDate;
    @ApiModelProperty(value = "查询开始日期(包含)", example = "20231008")
    @TableField(exist = false)
    @JsonFormat(pattern = "yyyyMMdd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:sss")
    private Date startDate;
    @ApiModelProperty(value = "查询截止日期(包含)", example = "20231008")
    @TableField(exist = false)
    @JsonFormat(pattern = "yyyyMMdd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:sss")
    private Date endDate;
}