mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-06-07 18:38:20 +08:00
e5063e1a4d
v3.0.1
13 lines
271 B
C#
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);
|
|
}
|
|
} |