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