2021-10-11 21:50:50 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Yi.Framework.Model.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Interface
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IUserService:IBaseService<user>
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<bool> DelListByUpdateAsync(List<int> _ids);
|
2021-10-12 12:50:52 +08:00
|
|
|
|
Task<IEnumerable<user>> GetAllEntitiesTrueAsync();
|
|
|
|
|
|
Task<IEnumerable<user>> GetEntitiesTrueByIdAsync(List<int> _ids);
|
|
|
|
|
|
Task<bool> AddEntitesAsync(List<user> _users);
|
|
|
|
|
|
Task<bool> UpdateEntitesAsync(List<user> _users);
|
|
|
|
|
|
|
2021-10-11 21:50:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|