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.
53 lines
1.1 KiB
C#
53 lines
1.1 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
{
|
|
[JsonObject]
|
|
public class CodePackageModel
|
|
{
|
|
#region
|
|
private string _pkgs = "";
|
|
/// <summary>
|
|
/// 包装类型
|
|
/// </summary>
|
|
public string PKGS
|
|
{
|
|
get { return _pkgs; }
|
|
set { _pkgs = value; }
|
|
}
|
|
|
|
private string _cexplain = "";
|
|
/// <summary>
|
|
/// 中文说明
|
|
/// </summary>
|
|
public string CEXPLAIN
|
|
{
|
|
get { return _cexplain; }
|
|
set { _cexplain = value; }
|
|
}
|
|
|
|
private string _edicode = "";
|
|
/// <summary>
|
|
/// EDI代码
|
|
/// </summary>
|
|
public string EDICODE
|
|
{
|
|
get { return _edicode; }
|
|
set { _edicode = value; }
|
|
}
|
|
|
|
private string _gid = "";
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|