123456789101112131415161718192021222324252627282930313233343536373839 |
- using CZFW.Framework.Model.Entity;
- using CZFW.Framework.Model.ViewModel;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CZFW.Framework.Interface.Api
- {
- public interface ICustomerUserPrivilegeApi
- {
-
-
-
-
-
-
- ResultModel AddCustomerUserPrivileges(System.Collections.Generic.IList<CustomerUserPrivilegeEntity> customerUserPrivileges);
-
-
-
-
-
-
- ResultModel RevokeCustomerUserPrivilegesByIds(IList<int> customerUserPriviligeIds);
- IList<CustomerUserPrivilegeModel> GetCustomerUserPrivileges(int userId);
-
-
-
-
-
-
-
- ResultModel RevokeCustomerUserPrivileges(int userId, int entId, IList<CustomerUserPrivilegeEntity> customerUserPrivileges);
- }
- }
|