You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//Dec_Product
|
|
public class Dec_Product
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GID
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// HSCODE
|
|
/// </summary>
|
|
private string _hscode;
|
|
public string HSCODE
|
|
{
|
|
get{ return _hscode; }
|
|
set{ _hscode = value; }
|
|
}
|
|
/// <summary>
|
|
/// NAME
|
|
/// </summary>
|
|
private string _name;
|
|
public string NAME
|
|
{
|
|
get{ return _name; }
|
|
set{ _name = value; }
|
|
}
|
|
/// <summary>
|
|
/// UNIT
|
|
/// </summary>
|
|
private string _unit;
|
|
public string UNIT
|
|
{
|
|
get{ return _unit; }
|
|
set{ _unit = value; }
|
|
}
|
|
}
|
|
}
|