Revert "上传框架"

This reverts commit bcf39d525b.
This commit is contained in:
橙子
2021-10-12 13:45:24 +08:00
parent bcf39d525b
commit f35ca69550
14 changed files with 21 additions and 232 deletions

View File

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