258 lines
5.3 KiB
C#
258 lines
5.3 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using AIMSDAL;
|
|
|
|
namespace AIMSModel
|
|
{
|
|
[Serializable]
|
|
public partial class MedicalItem
|
|
{
|
|
private int? id;
|
|
private string no;
|
|
private string name;
|
|
private string helpCode;
|
|
private string medicalItemAlias;
|
|
private string medicalItemAliasHelpCode;
|
|
private Decimal? retailPrice;
|
|
private int? dosageKindId;
|
|
private string stand;
|
|
private string barCode;
|
|
private string medicalDictNo;
|
|
private int? drugKindId;
|
|
private int? pharmaCologyId;
|
|
private string insuranceKind;
|
|
private string insuranceKindNH;
|
|
private string antibiotics;
|
|
private int? isSkintest;
|
|
private Decimal? dosage;
|
|
private string dosageUnit;
|
|
private string packingUnit;
|
|
private string splitUnit;
|
|
private int? quotiety;
|
|
private int? isValid;
|
|
private string remark;
|
|
private string operatorNo;
|
|
private string operatorName;
|
|
private DateTime? operateDate;
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? Id
|
|
{
|
|
get{ return id; }
|
|
set{ id=value; }
|
|
}
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
public string No
|
|
{
|
|
get{ return no; }
|
|
set{ no=value; }
|
|
}
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name
|
|
{
|
|
get{ return name; }
|
|
set{ name=value; }
|
|
}
|
|
/// <summary>
|
|
/// 帮助码
|
|
/// </summary>
|
|
public string HelpCode
|
|
{
|
|
get{ return helpCode; }
|
|
set{ helpCode=value; }
|
|
}
|
|
/// <summary>
|
|
/// 别名
|
|
/// </summary>
|
|
public string MedicalItemAlias
|
|
{
|
|
get{ return medicalItemAlias; }
|
|
set{ medicalItemAlias=value; }
|
|
}
|
|
/// <summary>
|
|
/// 别名帮助码
|
|
/// </summary>
|
|
public string MedicalItemAliasHelpCode
|
|
{
|
|
get{ return medicalItemAliasHelpCode; }
|
|
set{ medicalItemAliasHelpCode=value; }
|
|
}
|
|
/// <summary>
|
|
/// 零售价格
|
|
/// </summary>
|
|
public Decimal? RetailPrice
|
|
{
|
|
get{ return retailPrice; }
|
|
set{ retailPrice=value; }
|
|
}
|
|
/// <summary>
|
|
/// 剂型
|
|
/// </summary>
|
|
public int? DosageKindId
|
|
{
|
|
get{ return dosageKindId; }
|
|
set{ dosageKindId=value; }
|
|
}
|
|
/// <summary>
|
|
/// 规格
|
|
/// </summary>
|
|
public string Stand
|
|
{
|
|
get{ return stand; }
|
|
set{ stand=value; }
|
|
}
|
|
/// <summary>
|
|
/// 条形码
|
|
/// </summary>
|
|
public string BarCode
|
|
{
|
|
get{ return barCode; }
|
|
set{ barCode=value; }
|
|
}
|
|
/// <summary>
|
|
/// 品种码
|
|
/// </summary>
|
|
public string MedicalDictNo
|
|
{
|
|
get{ return medicalDictNo; }
|
|
set{ medicalDictNo=value; }
|
|
}
|
|
/// <summary>
|
|
/// 药物分类
|
|
/// </summary>
|
|
public int? DrugKindId
|
|
{
|
|
get{ return drugKindId; }
|
|
set{ drugKindId=value; }
|
|
}
|
|
/// <summary>
|
|
/// 药理分类
|
|
/// </summary>
|
|
public int? PharmaCologyId
|
|
{
|
|
get{ return pharmaCologyId; }
|
|
set{ pharmaCologyId=value; }
|
|
}
|
|
/// <summary>
|
|
/// 医保类别
|
|
/// </summary>
|
|
public string InsuranceKind
|
|
{
|
|
get{ return insuranceKind; }
|
|
set{ insuranceKind=value; }
|
|
}
|
|
/// <summary>
|
|
/// 农合类别
|
|
/// </summary>
|
|
public string InsuranceKindNH
|
|
{
|
|
get{ return insuranceKindNH; }
|
|
set{ insuranceKindNH=value; }
|
|
}
|
|
/// <summary>
|
|
/// 抗菌素
|
|
/// </summary>
|
|
public string Antibiotics
|
|
{
|
|
get{ return antibiotics; }
|
|
set{ antibiotics=value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否皮试
|
|
/// </summary>
|
|
public int? IsSkintest
|
|
{
|
|
get{ return isSkintest; }
|
|
set{ isSkintest=value; }
|
|
}
|
|
/// <summary>
|
|
/// 剂量
|
|
/// </summary>
|
|
public Decimal? Dosage
|
|
{
|
|
get{ return dosage; }
|
|
set{ dosage=value; }
|
|
}
|
|
/// <summary>
|
|
/// 剂量单位
|
|
/// </summary>
|
|
public string DosageUnit
|
|
{
|
|
get{ return dosageUnit; }
|
|
set{ dosageUnit=value; }
|
|
}
|
|
/// <summary>
|
|
/// 包装单位
|
|
/// </summary>
|
|
public string PackingUnit
|
|
{
|
|
get{ return packingUnit; }
|
|
set{ packingUnit=value; }
|
|
}
|
|
/// <summary>
|
|
/// 拆分单位
|
|
/// </summary>
|
|
public string SplitUnit
|
|
{
|
|
get{ return splitUnit; }
|
|
set{ splitUnit=value; }
|
|
}
|
|
/// <summary>
|
|
/// 转换系数
|
|
/// </summary>
|
|
public int? Quotiety
|
|
{
|
|
get{ return quotiety; }
|
|
set{ quotiety=value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否有效
|
|
/// </summary>
|
|
public int? IsValid
|
|
{
|
|
get{ return isValid; }
|
|
set{ isValid=value; }
|
|
}
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark
|
|
{
|
|
get{ return remark; }
|
|
set{ remark=value; }
|
|
}
|
|
/// <summary>
|
|
/// 操作员工号
|
|
/// </summary>
|
|
public string OperatorNo
|
|
{
|
|
get{ return operatorNo; }
|
|
set{ operatorNo=value; }
|
|
}
|
|
/// <summary>
|
|
/// 操作员姓名
|
|
/// </summary>
|
|
public string OperatorName
|
|
{
|
|
get{ return operatorName; }
|
|
set{ operatorName=value; }
|
|
}
|
|
/// <summary>
|
|
/// 操作日期
|
|
/// </summary>
|
|
public DateTime? OperateDate
|
|
{
|
|
get{ return operateDate; }
|
|
set{ operateDate=value; }
|
|
}
|
|
}
|
|
}
|