56 lines
1.5 KiB
C#
56 lines
1.5 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; }
|
|
}
|
|
}
|