package com.zteits.job.dao.park; import com.zteits.clouds.api.apibase.bean.BizResult; import com.zteits.clouds.api.dto.order.parkorder.param.pushfreeberths.PushFreeBerthsChangeRequest; public interface ParkFreeBerthDao { /** * 更新空闲车位到数据库 * @param freeBerthsChangeMsgVO * 2018年4月27日 zhaowg */ void updateFreeBerthsByPlNo(PushFreeBerthsChangeRequest freeBerthsChangeMsgVO); /** * 根据停车场编号,查询空闲车位统计规则表,统计空闲车位数据 * @param plNo * @return 当前该停车场空闲车位数 * 2017年9月6日 zhaowg */ Integer updateFreeBerthNumByPlNo(String plNo); }