| | |
| | | package org.springblade.modules.place.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.place.entity.PlaceExtEntity; |
| | | import org.springblade.modules.place.vo.PlaceExtVO; |
| | | import org.springblade.core.mp.base.BaseService; |
| | |
| | | * @param placeExt |
| | | * @return |
| | | */ |
| | | boolean updatePlaceExt(PlaceExtEntity placeExt); |
| | | boolean updatePlaceExt(PlaceExtVO placeExt); |
| | | |
| | | /** |
| | | * 场所详情表 审核 |
| | |
| | | * @return |
| | | */ |
| | | boolean savePlaceExt(PlaceExtEntity placeExt); |
| | | |
| | | /** |
| | | * 场所详情表 自定义详情 |
| | | * @param placeExt |
| | | * @return |
| | | */ |
| | | PlaceExtVO getDetail(PlaceExtVO placeExt); |
| | | |
| | | Integer selectCount(@Param("userId") Long userId, @Param("neiCode") String neiCode, @Param("confirmFlag") Integer confirmFlag); |
| | | } |