tijian_jichuang/Code/SOH.JianYan.DEC_CS800B/JY_YiQi.cs
2025-02-20 11:54:48 +08:00

49 lines
889 B
C#

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
namespace SOH.JianYan.DEC_CS800B
{
public class JY_YiQi : SOH.JianYan.IJY_YiQi
{
public string YQBM
{
get
{
return "CS800B";
}
}
public int YQLB
{
get
{
return 12;
}
}
public string YQMC
{
get
{
return "迪瑞CS-800B生化仪";
}
}
public DataTable GetJYXM()
{
DataTable dt = new DataTable();
return dt;
//throw new NotImplementedException();
}
public DataTable GetJYXM_Calc()
{
DataTable dt = new DataTable();
return dt;
}
}
}