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
1.2 KiB
C#
59 lines
1.2 KiB
C#
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
|
|
}
|