19 lines
485 B
C#
19 lines
485 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RoadFlow.Data
|
|
{
|
|
public interface IProgramExport : IRoadFlowRepository<RoadFlow.Model.rf_programexport>
|
|
{
|
|
/// <summary>
|
|
/// 按programId获取
|
|
/// </summary>
|
|
/// <param name="programId"></param>
|
|
/// <returns></returns>
|
|
public List<Model.rf_programexport> GetAllByProgramId(string programId);
|
|
}
|
|
}
|