mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-30 21:56:37 +08:00
@@ -1,18 +0,0 @@
|
||||
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 ILoopModelService:IBaseService<loopModel>
|
||||
{
|
||||
Task<bool> DelListByUpdateAsync(List<int> _ids);
|
||||
Task<IEnumerable<loopModel>> GetAllEntitiesTrueAsync();
|
||||
Task<IEnumerable<loopModel>> GetEntitiesTrueByIdAsync(List<int> _ids);
|
||||
Task<bool> AddEntitesAsync(List<loopModel> _loopModels);
|
||||
Task<bool> UpdateEntitesAsync(List<loopModel> _loopModels);
|
||||
}
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
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 IMenuService:IBaseService<menu>
|
||||
{
|
||||
Task<bool> DelListByUpdateAsync(List<int> _ids);
|
||||
Task<IEnumerable<menu>> GetAllEntitiesTrueAsync();
|
||||
Task<IEnumerable<menu>> GetEntitiesTrueByIdAsync(List<int> _ids);
|
||||
Task<bool> AddEntitesAsync(List<menu> _menus);
|
||||
Task<bool> UpdateEntitesAsync(List<menu> _menus);
|
||||
}
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
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 IMouldService:IBaseService<mould>
|
||||
{
|
||||
Task<bool> DelListByUpdateAsync(List<int> _ids);
|
||||
Task<IEnumerable<mould>> GetAllEntitiesTrueAsync();
|
||||
Task<IEnumerable<mould>> GetEntitiesTrueByIdAsync(List<int> _ids);
|
||||
Task<bool> AddEntitesAsync(List<mould> _moulds);
|
||||
Task<bool> UpdateEntitesAsync(List<mould> _moulds);
|
||||
}
|
||||
}
|
||||
@@ -11,8 +11,5 @@ namespace Yi.Framework.Interface
|
||||
{
|
||||
Task<bool> DelListByUpdateAsync(List<int> _ids);
|
||||
Task<IEnumerable<role>> GetAllEntitiesTrueAsync();
|
||||
Task<IEnumerable<role>> GetEntitiesTrueByIdAsync(List<int> _ids);
|
||||
Task<bool> AddEntitesAsync(List<role> _roles);
|
||||
Task<bool> UpdateEntitesAsync(List<role> _roles);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,10 +10,6 @@ namespace Yi.Framework.Interface
|
||||
public interface IUserService:IBaseService<user>
|
||||
{
|
||||
Task<bool> DelListByUpdateAsync(List<int> _ids);
|
||||
Task<IEnumerable<user>> GetAllEntitiesTrueAsync();
|
||||
Task<IEnumerable<user>> GetEntitiesTrueByIdAsync(List<int> _ids);
|
||||
Task<bool> AddEntitesAsync(List<user> _users);
|
||||
Task<bool> UpdateEntitesAsync(List<user> _users);
|
||||
|
||||
Task<IEnumerable<user>> GetAllEntitiesTrueAsync();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user