74 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C#
		
	
	
	
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; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 单位
 | 
						|
        /// </summary>
 | 
						|
        [SugarColumn(ColumnName = "pack_unit")]
 | 
						|
        public string PackdUnit { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 库存数
 | 
						|
        /// </summary>
 | 
						|
        [SugarColumn(ColumnName = "stockQuantity")]
 | 
						|
        public int StockQuantity { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 空瓶数
 | 
						|
        /// </summary>
 | 
						|
        [SugarColumn(ColumnName = "emptyQuantity")]
 | 
						|
        public int EmptyQuantity { get; set; }
 | 
						|
    }
 | 
						|
}
 |