49 lines
898 B
C#
49 lines
898 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SOH.JianYan.DEC_ZL9000C
|
|
{
|
|
public class JY_YiQi : SOH.JianYan.IJY_YiQi
|
|
{
|
|
public string YQBM
|
|
{
|
|
get
|
|
{
|
|
return "ZL9000C";
|
|
}
|
|
}
|
|
|
|
public int YQLB
|
|
{
|
|
get
|
|
{
|
|
return 17;
|
|
}
|
|
}
|
|
|
|
public string YQMC
|
|
{
|
|
get
|
|
{
|
|
return "众驰伟业ZL-9000C血流变";
|
|
}
|
|
}
|
|
|
|
public DataTable GetJYXM()
|
|
{
|
|
DataTable dt = new DataTable();
|
|
return dt;
|
|
//throw new NotImplementedException();
|
|
}
|
|
|
|
public DataTable GetJYXM_Calc()
|
|
{
|
|
DataTable dt = new DataTable();
|
|
return dt;
|
|
}
|
|
}
|
|
}
|