using System.Collections.Generic;
using System.Threading.Tasks;
namespace GxPress.Service.Interface.OrganizationUser
{
public interface IOrganizationUserService : IService
{
///
/// 添加
///
///
///
Task InsertAsync(Entity.tede2.Organization.OrganizationUser model);
Task DeleteAsync(List ids);
}
}