9e9e2f3e
zhaowg
空闲车位数更新优化
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package com.zteits.job.task.getfreeberths;
import com.zteits.job.domain.ParkingLot;
import com.zteits.job.task.getfreeberths.param.GetRealFreeBerthsDO;
/**
* 调用第三方接口查询车位信息
* Copyright: Copyright (c) 2017 zteits
*
* @ClassName: QueryThirdBerthInfoService.java
* @Description:
* @version: v1.0.0
* @author: wangfei
* @date: 2018年9月13日 上午9:54:08
* Modification History:
* Date Author Version Description
* ---------------------------------------------------------*
* 2018年9月13日 wangfei v1.0.0 创建
*/
public interface CallThirdQueryFreeBerthService {
GetRealFreeBerthsDO queryFreeBerths(ParkingLot parkingLot);
}
|