上传框架

This commit is contained in:
lzw
2021-10-12 12:50:52 +08:00
parent 9cf6e29e02
commit bcf39d525b
14 changed files with 232 additions and 21 deletions

View 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);
}
}