- using System.Collections.Generic;
- using System.Threading.Tasks;
- namespace GxPress.Service.Interface.OrganizationUser
- {
- public interface IOrganizationUserService : IService
- {
- /// <summary>
- /// 添加
- /// </summary>
- /// <param name="model"></param>
- /// <returns></returns>
- Task<bool> InsertAsync(Entity.tede2.Organization.OrganizationUser model);
- Task<bool> DeleteAsync(List<int> ids);
- }
- }
|