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.
59 lines
1014 B
C#
59 lines
1014 B
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.CodeStlMode
|
|
{
|
|
|
|
[JsonObject]
|
|
public class CodeStlMode : ModelObjectBillHead
|
|
{
|
|
#region private Fields
|
|
|
|
private string _GID = Guid.NewGuid().ToString();
|
|
private string _STLCODE = string.Empty;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
#region Public Properties
|
|
|
|
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string GID
|
|
{
|
|
get { return _GID; }
|
|
set { _GID = value; }
|
|
}
|
|
|
|
[ModelDB]
|
|
public string STLCODE
|
|
{
|
|
get { return _STLCODE; }
|
|
set { _STLCODE = value; }
|
|
}
|
|
public string STLNAME { get;set;}
|
|
public string FINANCESOFTCODE { get; set; }
|
|
|
|
public string ENAME { get; set; }
|
|
|
|
#endregion
|
|
|
|
public CodeStlMode()
|
|
{
|
|
TableName = "code_stlmode";
|
|
}
|
|
}
|
|
|
|
#region 参照部分
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
}
|