Files
Yi.Framework/CC.Yi/CC.Yi.IBLL/T4IBLL.cs
橙子 e5063e1a4d v3.0.1
v3.0.1
2021-06-02 20:00:25 +08:00

13 lines
271 B
C#

using CC.Yi.Model;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace CC.Yi.IBLL
{
public partial interface IstudentBll : IBaseBll<student>
{
Task<bool> DelListByUpdateList(List<int> Ids);
}
}