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.

58 lines
939 B
C#

10 months ago
using System;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.MvcShipping.Models.CompanyGPS
{
[JsonObject]
public class OTCompanyENModel : ModelObjectBase
{
#region private Fields
private string _gid = string.Empty;
private string _name = String.Empty;
private string _enname = String.Empty;
#endregion
#region Public Properties
public string GID
{
get { return _gid; }
set { _gid = value; }
}
public string NAME
{
get { return _name; }
set { _name = value; }
}
public string ENNAME
{
get { return _enname; }
set { _enname = value; }
}
#endregion
public OTCompanyENModel()
{
TableName = "company";
}
}
#region 参照部分
#endregion
}