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.
65 lines
1.6 KiB
C#
65 lines
1.6 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//Dec_HsQua
|
|
public class Dec_HsQua
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GID
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// HS编码
|
|
/// </summary>
|
|
private string _hscode;
|
|
public string HSCode
|
|
{
|
|
get{ return _hscode; }
|
|
set{ _hscode = value; }
|
|
}
|
|
/// <summary>
|
|
/// 类别码
|
|
/// </summary>
|
|
private string _value;
|
|
public string Value
|
|
{
|
|
get{ return _value; }
|
|
set{ _value = value; }
|
|
}
|
|
/// <summary>
|
|
/// 货物名称
|
|
/// </summary>
|
|
private string _name;
|
|
public string Name
|
|
{
|
|
get{ return _name; }
|
|
set{ _name = value; }
|
|
}
|
|
/// <summary>
|
|
/// 与HS货物名称差别
|
|
/// </summary>
|
|
private string _difference;
|
|
public string Difference
|
|
{
|
|
get{ return _difference; }
|
|
set{ _difference = value; }
|
|
}
|
|
/// <summary>
|
|
/// 是否有效
|
|
/// </summary>
|
|
private int? _effective;
|
|
public int? Effective
|
|
{
|
|
get{ return _effective; }
|
|
set{ _effective = value; }
|
|
}
|
|
}
|
|
}
|