Compare commits

..

No commits in common. "05968843644fc6c7e67ecccd0517e8c3ad438248" and "ab14de576c8f45b19f7f3fa75f4a87e062686c10" have entirely different histories.

5 changed files with 5 additions and 14 deletions

View File

@ -15,7 +15,7 @@ import java.util.Map;
*/
@Tag(name = "大屏服务 - 检票")
@RestController
@RequestMapping("/checkticket")
@RequestMapping("/datacenter/checkticket")
@Validated
public class CheckTicketApi {
@Resource

View File

@ -10,8 +10,6 @@ import javax.annotation.Resource;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* @Description 售票
@ -39,14 +37,7 @@ public class SaleDataApi {
@GetMapping("/lastyear/{startTime}")
@Operation(summary = "获得去年日期往前推十天的数据")
public List<Map<String, String>> lastyearNum(@PathVariable("startTime") String startTime) {
String resultStr = startTime.replaceAll("-", "");
// 正则表达式匹配 yyyyMMdd 格式
Pattern pattern = Pattern.compile("^\\d{8}$");
Matcher matcher = pattern.matcher(resultStr);
if (matcher.matches()){
return saleDataService.findCheckticketcountBytime(resultStr);
}
return null;
return saleDataService.findCheckticketcountBytime(startTime);
}
@GetMapping("/gender")

View File

@ -21,7 +21,7 @@ import java.net.URL;
*/
@Tag(name = "大屏服务 - 车辆过渡情况")
@RestController
@RequestMapping("/h5/transitionFlight")
@RequestMapping("/datacenter/h5/transitionFlight")
@Validated
public class TransitionFlightApi {
//智慧票务检票系统车辆过渡情况(南日)

View File

@ -24,7 +24,7 @@ import java.util.Optional;
@Tag(name = "大屏服务 - 停车场接口")
@RestController
@RequestMapping("/h5/vehicleAccess")
@RequestMapping("/datacenter/h5/vehicleAccess")
public class VehicleAccessApi {
@Autowired

View File

@ -15,7 +15,7 @@ import org.springframework.web.bind.annotation.RestController;
*/
@Tag(name = "大屏服务 - 天气接口")
@RestController
@RequestMapping("/h5/weather")
@RequestMapping("/datacenter/h5/weather")
@Validated
public class WeatherApi {
@GetMapping(value = "/getWeather")