using System;
using System.Collections.Generic;
using System.Linq;
namespace DM_Weight.Models
{
///
///
///
public class DrugInfo
{
///
///
///
//[SugarColumn(ColumnName = "pharmacy")]
//public string Pharmacy { get; set; }
///
/// ҩƷID
///
public string DrugId { get; set; }
///
/// ƴ
///
public string PyCode { get; set; }
///
///
///
//[SugarColumn(ColumnName = "BD_code")]
//public string BdCode { get; set; }
///
/// ҩƷ
///
public string DrugBarcode { get; set; }
///
/// ҩƷ����
///
public string DrugName { get; set; }
///
///
///
public string DrugBrandname { get; set; }
///
/// ҩƷ���
///
public string DrugSpec { get; set; }
///
/// ����
///
public string Dosage { get; set; }
///
/// ��װ��λ
///
public string PackUnit { get; set; }
///
/// ��������
///
public string Manufactory { get; set; }
///
/// ���ҩ��
///
public int? MaxStock { get; set; }
//[SugarColumn(IsIgnore=true)]
public List channelStocks { get; set; }
public List? DrugManuNos { get; set; }
public int? StockQuantity { get; set; }
public string drug_name_spec { get; set; }
//[SugarColumn(ColumnName = "drug_name_spec")]
//public string Name { get; set; }
}
}