using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DM_Weight.Models
{
    [SugarTable("hkc_shiftsreport")]
    public class ShiftsReport
    {
        [SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
        public int Id { get; set; }
        [SugarColumn(ColumnName = "drug_name")]
        public string DrugName { get; set; }
        [SugarColumn(ColumnName = "drug_spec")]
        public string DrugSpec { get; set; }
        [SugarColumn(ColumnName = "beforeNum")]
        public int? BeforeNum { get; set; }
        [SugarColumn(ColumnName = "getNum")]
        public int? GetNum { get; set; }
        [SugarColumn(ColumnName = "useNum")]
        public int? UseNum { get; set; }
        [SugarColumn(ColumnName = "manu_no")]
        public string ManuNo { get; set; }
        [SugarColumn(ColumnName = "surplus")]
        public int? Surplus { get; set; }
        [SugarColumn(ColumnName = "opt_Date")]
        public DateTime OptDate { get; set; }
        [SugarColumn(ColumnName = "FromOperator")]
        public string FromOperator { get; set; }
        [SugarColumn(ColumnName = "FromReviewer")]
        public string FromReviewer { get; set; }
        [SugarColumn(ColumnName = "ToOperator")]
        public string ToOperator { get; set; }
        [SugarColumn(ColumnName = "ToReviewer")]
        public string ToReviewer { get; set; }
        [SugarColumn(ColumnName = "machineId")]
        public string MachineId { get; set; }
        /// 
        /// 单位
        /// 
        [SugarColumn(ColumnName = "pack_unit")]
        public string PackdUnit { get; set; }
        /// 
        /// 库存数
        /// 
        [SugarColumn(ColumnName = "stockQuantity")]
        public int StockQuantity { get; set; }
        /// 
        /// 空瓶数
        /// 
        [SugarColumn(ColumnName = "emptyQuantity")]
        public int EmptyQuantity { get; set; }
    }
}