public interface TakeoutStoreService
| 限定符和类型 | 方法和说明 |
|---|---|
TakeoutShop |
getStore(Long mchId,
Long storeId)
查询门店信息
|
List<TakeoutComment> |
getStoreComment(Long mchId,
Long storeId,
String startTime,
String endTime,
int pageSize,
int offset)
获取门店评论
|
void |
offlineStore(Long mchId,
Long storeId)
门店下线(所有外卖平台)
|
void |
offlineStoreByPlatform(Long mchId,
Long storeId,
String platform)
门店下线(单个外卖平台)
|
void |
onlineStore(Long mchId,
Long storeId)
门店上线(所有外卖平台)
|
void |
onlineStoreByPlatform(Long mchId,
Long storeId,
String platform)
门店上线(单个外卖平台)
|
void |
replyStoreComment(Long mchId,
Long storeId,
Long commentId,
String replyContent)
回复门店评论
|
void |
updateStore(Long mchId,
Long storeId,
TakeoutShop takeoutShop,
String platform)
更新门店信息
|
TakeoutShop getStore(Long mchId, Long storeId) throws com.gemantic.common.exception.ServiceException, com.gemantic.common.exception.ServiceDaoException
mchId - 品牌idstoreId - 门店idcom.gemantic.common.exception.ServiceExceptioncom.gemantic.common.exception.ServiceDaoExceptionvoid updateStore(Long mchId, Long storeId, TakeoutShop takeoutShop, String platform) throws com.gemantic.common.exception.ServiceException, com.gemantic.common.exception.ServiceDaoException
mchId - 品牌idstoreId - 门店idtakeoutShop - 门店信息com.gemantic.common.exception.ServiceExceptioncom.gemantic.common.exception.ServiceDaoExceptionvoid onlineStore(Long mchId, Long storeId) throws com.gemantic.common.exception.ServiceException, com.gemantic.common.exception.ServiceDaoException
mchId - 品牌idstoreId - 门店idcom.gemantic.common.exception.ServiceExceptioncom.gemantic.common.exception.ServiceDaoExceptionvoid offlineStore(Long mchId, Long storeId) throws com.gemantic.common.exception.ServiceException, com.gemantic.common.exception.ServiceDaoException
mchId - 品牌idstoreId - 门店idcom.gemantic.common.exception.ServiceExceptioncom.gemantic.common.exception.ServiceDaoExceptionvoid onlineStoreByPlatform(Long mchId, Long storeId, String platform) throws com.gemantic.common.exception.ServiceException, com.gemantic.common.exception.ServiceDaoException
mchId - 品牌idstoreId - 门店idplatform - 平台代码com.gemantic.common.exception.ServiceExceptioncom.gemantic.common.exception.ServiceDaoExceptionvoid offlineStoreByPlatform(Long mchId, Long storeId, String platform) throws com.gemantic.common.exception.ServiceException, com.gemantic.common.exception.ServiceDaoException
mchId - 品牌idstoreId - 门店idplatform - 平台代码com.gemantic.common.exception.ServiceExceptioncom.gemantic.common.exception.ServiceDaoExceptionList<TakeoutComment> getStoreComment(Long mchId, Long storeId, String startTime, String endTime, int pageSize, int offset) throws com.gemantic.common.exception.ServiceException, com.gemantic.common.exception.ServiceDaoException
mchId - 品牌idstoreId - 门店idstartTime - 开始时间(单位秒)endTime - 结束时间(单位秒)pageSize - 页面数据大小offset - 页面偏移量com.gemantic.common.exception.ServiceExceptioncom.gemantic.common.exception.ServiceDaoExceptionvoid replyStoreComment(Long mchId, Long storeId, Long commentId, String replyContent) throws com.gemantic.common.exception.ServiceException, com.gemantic.common.exception.ServiceDaoException
mchId - 品牌idstoreId - 门店idcommentId - 评论idreplyContent - 回复内容com.gemantic.common.exception.ServiceExceptioncom.gemantic.common.exception.ServiceDaoExceptionCopyright © 2018. All rights reserved.