30 lines
855 B
C#
30 lines
855 B
C#
|
|
using APT.BaseData.Domain.Entities.FM;
|
|||
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.MS.Domain.Entities.SC.PR
|
|||
|
|
{
|
|||
|
|
[Description("药品配置")]
|
|||
|
|
public class T_PR_DRUG_SET : MesEntityBase
|
|||
|
|
{
|
|||
|
|
[Description("药品(剂)名称")]
|
|||
|
|
public string NAME { get; set; }
|
|||
|
|
|
|||
|
|
[Description("药剂类型")]
|
|||
|
|
[DataFieldForeignKey("Nav_Type")]
|
|||
|
|
public Guid? TYPE_ID { get; set; }
|
|||
|
|
|
|||
|
|
[Description("药剂类型")]
|
|||
|
|
public virtual T_PR_DRUG_TYPE Nav_Type { get; set; }
|
|||
|
|
|
|||
|
|
[Description("规格")]
|
|||
|
|
public ICollection<T_PR_DRUG_SET_SPECIFY> Nav_Specifys { get; set; }
|
|||
|
|
|
|||
|
|
[Description("使用安全确认")]
|
|||
|
|
public ICollection<T_PR_DRUG_SET_SAFE_CONFIRM> Nav_Confirms { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|