using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace DM_Weight.Models
{
    [SugarTable("surgical_schedule_detail")]
    public class SurgicalScheduleDetail
    {
        /// 
        /// 主键
        /// 
        [SugarColumn(ColumnName = "id",IsPrimaryKey =true)]
        public  int Id { get; set; }
        /// 
        /// 手术id
        /// 
        [SugarColumn(ColumnName = "operation_id")]
        public string OperationId { get; set; }
        /// 
        /// 取药记录id
        /// 
        [SugarColumn(ColumnName = "get_record_id")]
        public int GetRecordId { get; set; }
        /// 
        /// 处方数量
        /// 
        [SugarColumn(ColumnName = "quantity")]
        public int Quantity { get; set; }
        /// 
        /// 药品id
        /// 
        [SugarColumn(ColumnName = "drug_id")]
        public string DrugId { get; set; }
        /// 
        /// 批次
        /// 
        [SugarColumn(ColumnName = "manu_no")]
        public string ManuNo { get; set; }
        /// 
        /// 效期
        /// 
        [SugarColumn(ColumnName = "eff_date")]
        public string EffDate { get;set; }
        /// 
        /// 状态
        /// 
        [SugarColumn(ColumnName = "status")]
        public int Status { get; set; }
        /// 
        /// 操作人
        /// 
        [SugarColumn(ColumnName = "insert_user_id")]
        public int? InsertUserId { get; set; }
    }
}