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.
DS7/DSWeb/Areas/MvcShipping/Models/MsBaseInfo/GOODModel.cs

58 lines
978 B
C#

using System;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.MvcShipping.Models.GOODS
{
[JsonObject]
public class GOODSModel : ModelObjectBase
{
#region private Fields
private string _GOODCODE = string.Empty;
private string _GOODNAME = String.Empty;
private string _CODEANDNAME = String.Empty;
#endregion
#region Public Properties
public string GOODCODE
{
get { return _GOODCODE; }
set { _GOODCODE = value; }
}
public string GOODNAME
{
get { return _GOODNAME; }
set { _GOODNAME = value; }
}
public string CODEANDNAME
{
get { return _CODEANDNAME; }
set { _CODEANDNAME = value; }
}
#endregion
public GOODSModel()
{
TableName = "code_goods";
}
}
#region 参照部分
#endregion
}