using System;
using System.Collections;
using System.Collections.Generic;
using AIMSDAL;
namespace AIMSModel
{
[Serializable]
public partial class StockPile
{
private int? id;
private int? depId;
private int? itemId;
private int? amount;
private string barCode;
private string batchNo;
private DateTime? disableDate;
private int? isValid;
///
///
///
public int? Id
{
get{ return id; }
set{ id=value; }
}
///
///
///
public int? DepId
{
get{ return depId; }
set{ depId=value; }
}
///
///
///
public int? ItemId
{
get{ return itemId; }
set{ itemId=value; }
}
///
///
///
public int? Amount
{
get{ return amount; }
set{ amount=value; }
}
///
///
///
public string BarCode
{
get{ return barCode; }
set{ barCode=value; }
}
///
///
///
public string BatchNo
{
get{ return batchNo; }
set{ batchNo=value; }
}
///
///
///
public DateTime? DisableDate
{
get{ return disableDate; }
set{ disableDate=value; }
}
///
///
///
public int? IsValid
{
get{ return isValid; }
set{ isValid=value; }
}
}
}