41 lines
834 B
C#
41 lines
834 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DM_Dal.Models
|
|
{
|
|
public class ShiftsReport
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string DrugName { get; set; }
|
|
|
|
public string DrugSpec { get; set; }
|
|
|
|
public int? BeforeNum { get; set; }
|
|
|
|
public int? GetNum { get; set; }
|
|
|
|
public int? UseNum { get; set; }
|
|
|
|
public string ManuNo { get; set; }
|
|
|
|
public int? Surplus { get; set; }
|
|
|
|
public DateTime OptDate { get; set; }
|
|
|
|
public string FromOperator { get; set; }
|
|
|
|
public string FromReviewer { get; set; }
|
|
|
|
public string ToOperator { get; set; }
|
|
|
|
public string ToReviewer { get; set; }
|
|
|
|
public string MachineId { get; set; }
|
|
}
|
|
}
|