20 lines
552 B
C#
20 lines
552 B
C#
using New_College.IRepository.Base;
|
|
using New_College.Model.Models;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.IRepository
|
|
{
|
|
/// <summary>
|
|
/// ID_PlanMajorDescRepository
|
|
/// </summary>
|
|
public interface ID_PlanMajorDescRepository : IBaseRepository<D_PlanMajorDesc>
|
|
{
|
|
/// <summary>
|
|
/// 批量更新数据
|
|
/// </summary>
|
|
/// <param name="majorDescs"></param>
|
|
/// <returns></returns>
|
|
Task<bool> Batchupdate(List<D_PlanMajorDesc> majorDescs);
|
|
}
|
|
} |