配置充电停车优惠

This commit is contained in:
Guoqs
2025-02-17 16:15:54 +08:00
parent f7057f925f
commit bf673bc5bf
9 changed files with 252 additions and 106 deletions

View File

@@ -2,6 +2,8 @@ package com.jsowell.pile.vo.web;
import lombok.Data;
import java.time.LocalTime;
/**
* 充电停车优惠VO
*/
@@ -37,10 +39,10 @@ public class ChargeParkingDiscountVO {
/**
* 优惠生效时间
*/
private String startTime;
private LocalTime startTime;
/**
* 优惠失效时间
*/
private String endTime;
private LocalTime endTime;
}