26 lines
764 B
C#
26 lines
764 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DM_Weight.Models
|
|||
|
{
|
|||
|
public class ChannelStockCount
|
|||
|
{
|
|||
|
public int DrawerNo { get; set; }
|
|||
|
public int ColNo { get; set; }
|
|||
|
public string DrugId { get; set; }
|
|||
|
public string ManuNo { get;set; }
|
|||
|
public int Quantity { get;set; }
|
|||
|
public string EffDate { get; set; }
|
|||
|
public string DrugName { get; set; }
|
|||
|
public string DrugSpec { get; set; }
|
|||
|
public string Dosage { get;set; }
|
|||
|
public string ManuFactory { get;set; }
|
|||
|
public string SmallUnit { get;set; }
|
|||
|
public string PackUnit { get; set; }
|
|||
|
public string MachineId { get; set; }
|
|||
|
}
|
|||
|
}
|