using New_College.IRepository.Base;
using New_College.Model.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace New_College.IRepository
{
///
/// ID_PlanMajorDescRepository
///
public interface ID_PlanMajorDescRepository : IBaseRepository
{
///
/// 批量更新数据
///
///
///
Task Batchupdate(List majorDescs);
}
}