46 lines
874 B
C#
46 lines
874 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SOH.JianYan
|
|
{
|
|
/// <summary>
|
|
/// 检验仪器基本接口
|
|
/// </summary>
|
|
public interface IJY_YiQi
|
|
{
|
|
/// <summary>
|
|
/// 获取仪器的检验项目
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
DataTable GetJYXM();
|
|
|
|
/// <summary>
|
|
/// 获取仪器的计算项目
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
DataTable GetJYXM_Calc();
|
|
|
|
/// <summary>
|
|
/// 仪器编码
|
|
/// </summary>
|
|
string YQBM { get; }
|
|
|
|
/// <summary>
|
|
/// 仪器名称
|
|
/// </summary>
|
|
string YQMC { get; }
|
|
|
|
/// <summary>
|
|
/// 仪器类别
|
|
/// </summary>
|
|
int YQLB
|
|
{
|
|
get;
|
|
}
|
|
|
|
}
|
|
}
|