1234567891011121314 |
- using CZFW.Framework.Interface.Api;
- using CZFW.Framework.Interface.Base;
- using CZFW.Framework.Model.Entity;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CZFW.Framework.Interface
- {
- public interface ICustomerUserPrivilege:ILogicBase<CustomerUserPrivilegeEntity>, ICustomerUserPrivilegeApi, IValidate<CustomerUserPrivilegeEntity>
- {
- }
- }
|