using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//Dec_Product
public class Dec_Product
{
///
/// GID
///
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
///
/// HSCODE
///
private string _hscode;
public string HSCODE
{
get{ return _hscode; }
set{ _hscode = value; }
}
///
/// NAME
///
private string _name;
public string NAME
{
get{ return _name; }
set{ _name = value; }
}
///
/// UNIT
///
private string _unit;
public string UNIT
{
get{ return _unit; }
set{ _unit = value; }
}
}
}