mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 09:10:53 +08:00
上传框架
This commit is contained in:
18
Yi.Framework/Yi.Framework.Interface/ILoopModelService.cs
Normal file
18
Yi.Framework/Yi.Framework.Interface/ILoopModelService.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user