mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-03-22 12:17:21 +08:00
【调整】移除后台设置是否会员绑定手机号码的设置。
【新增】新增商城小程序前端商家管理员功能,商家管理员可以通过商家中心查看所有信息。 【调整】商家中心按门店进行过滤,提货单,服务券,订单等,本门店只能处理本门店业务及查看相应数据。 【调整】后台商城配置移除【会员设置】tab,增加【商家设置】tab,将商家相关设置归集到一起。
This commit is contained in:
@@ -39,7 +39,7 @@ namespace CoreCms.Net.IServices
|
||||
/// 获取店铺提货单列表
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<WebApiCallBack> GetStoreLadingList(int userId, int page, int limit);
|
||||
Task<WebApiCallBack> GetStoreLadingList(int userId, int storeId, int page, int limit);
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace CoreCms.Net.IServices
|
||||
/// 店铺核销的服务券列表
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<WebApiCallBack> GetVerificationLogs(int userId, int page, int limit);
|
||||
Task<WebApiCallBack> GetVerificationLogs(int userId, int storeId, int page, int limit);
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace CoreCms.Net.IServices
|
||||
public interface ICoreCmsClerkServices : IBaseServices<CoreCmsClerk>
|
||||
{
|
||||
/// <summary>
|
||||
/// 判断是不是店员
|
||||
/// 判断是否是商家,店员,开启商家中心
|
||||
/// </summary>
|
||||
/// <param name="userId"></param>
|
||||
/// <returns></returns>
|
||||
|
||||
@@ -60,8 +60,9 @@ namespace CoreCms.Net.IServices
|
||||
/// 根据用户序列获取单个门店数据
|
||||
/// </summary>
|
||||
/// <param name="userId">用户序列</param>
|
||||
/// <param name="storeId">门店序列</param>
|
||||
/// <param name="blUseNoLock">是否使用WITH(NOLOCK)</param>
|
||||
/// <returns></returns>
|
||||
Task<CoreCmsStore> GetStoreByUserId(int userId, bool blUseNoLock = false);
|
||||
Task<CoreCmsStore> GetStoreByUserId(int userId, int storeId, bool blUseNoLock = false);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user