using System; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.Areas.TruckMng.Models.MsKfBzWx { [JsonObject] public class MsKfBzWx : ModelObjectBase { #region private Fields private string _wxLxCode = String.Empty; private string _wxLxName = String.Empty; private decimal _fyTotal = 0; private string _remark = String.Empty; #endregion #region Public Properties [ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)] public string WxLxCode { get { return _wxLxCode; } set { _wxLxCode = value; } } [ModelDB] public string WxLxName { get { return _wxLxName; } set { _wxLxName = value; } } [ModelDB] public decimal FyTotal { get { return _fyTotal; } set { _fyTotal = value; } } [ModelDB] public string Remark { get { return _remark; } set { _remark = value; } } #endregion public MsKfBzWx() { TableName = "tMsKfBzWx"; } } #region 参照部分 #endregion }