Files
Yi.Admin/Yi.Framework/Yi.Framework.Interface/IMouldService.cs
2021-10-12 13:56:03 +08:00

16 lines
376 B
C#

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