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 }