17 lines
382 B
C#
17 lines
382 B
C#
using HL_FristAidPlatform_Help;
|
|
using HL_FristAidPlatform_Models;
|
|
|
|
namespace HL_FristAidPlatform_IDataBase
|
|
{
|
|
public interface IT_Base_MPDS
|
|
{
|
|
|
|
/// <summary>
|
|
/// 根据类型获取MPDS针状集合
|
|
/// </summary>
|
|
/// <param name="type"></param>
|
|
/// <returns></returns>
|
|
TableModel<T_Base_MPDS> GetListOfType(int type);
|
|
}
|
|
}
|