| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- using System;
- namespace RMYY_CallCenter_Api.Model
- {
- /// <summary>
- /// T_Sys_DictDrug:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Sys_DictDrug
- {
- public T_Sys_DictDrug()
- { }
- #region Model
- private int _f_id;
- private int? _f_dictdrugid;
- private string _cdgdispcode;
- private string _cdgname;
- private string _cdgnamecode;
- private string _cdggeneralname;
- private string _cdgspecification;
- private decimal? _idgmaxstock;
- private decimal? _idgminstock;
- private string _cdgdescription;
- private decimal? _idgstdprice;
- private decimal? _idglocalstdprice;
- private DateTime? _f_createtime;
- private int? _f_isdelete;
- /// <summary>
- ///
- /// </summary>
- public int F_ID
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- /// 药品id
- /// </summary>
- public int? F_DictDrugid
- {
- set { _f_dictdrugid = value; }
- get { return _f_dictdrugid; }
- }
- /// <summary>
- /// 药品编码
- /// </summary>
- public string cDgDispCode
- {
- set { _cdgdispcode = value; }
- get { return _cdgdispcode; }
- }
- /// <summary>
- /// 通用名
- /// </summary>
- public string cDgName
- {
- set { _cdgname = value; }
- get { return _cdgname; }
- }
- /// <summary>
- /// 输入编码(拼音名)
- /// </summary>
- public string cDgNameCode
- {
- set { _cdgnamecode = value; }
- get { return _cdgnamecode; }
- }
- /// <summary>
- /// 商品名
- /// </summary>
- public string cDgGeneralName
- {
- set { _cdggeneralname = value; }
- get { return _cdggeneralname; }
- }
- /// <summary>
- /// 规格
- /// </summary>
- public string cDgSpecification
- {
- set { _cdgspecification = value; }
- get { return _cdgspecification; }
- }
- /// <summary>
- /// 最高库存
- /// </summary>
- public decimal? iDgMaxstock
- {
- set { _idgmaxstock = value; }
- get { return _idgmaxstock; }
- }
- /// <summary>
- /// 最低库存
- /// </summary>
- public decimal? iDgMinstock
- {
- set { _idgminstock = value; }
- get { return _idgminstock; }
- }
- /// <summary>
- /// 药品说明
- /// </summary>
- public string cDgDescription
- {
- set { _cdgdescription = value; }
- get { return _cdgdescription; }
- }
- /// <summary>
- /// 国家限价
- /// </summary>
- public decimal? iDgStdPrice
- {
- set { _idgstdprice = value; }
- get { return _idgstdprice; }
- }
- /// <summary>
- /// 地区限价
- /// </summary>
- public decimal? iDgLocalStdPrice
- {
- set { _idglocalstdprice = value; }
- get { return _idglocalstdprice; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_CreateTime
- {
- set { _f_createtime = value; }
- get { return _f_createtime; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_IsDelete
- {
- set { _f_isdelete = value; }
- get { return _f_isdelete; }
- }
- /// <summary>
- /// 生产厂家
- /// </summary>
- public string cManufacturer
- {
- set;get;
- }
- /// <summary>
- /// 单价
- /// </summary>
- public decimal? iRetail
- {
- set; get;
- }
- #endregion Model
- }
- }
|