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.
DS7/DSWeb/Areas/TruckMng/Models/WlBsCard/WlPcFee.cs

94 lines
2.2 KiB
C#

using System;
using HcUtility.Core;
namespace DSWeb.Areas.TruckMng.Models.WlBsCard
{
public class WlPcFee : ModelObjectBillBody
{
#region private Fields
private string _billNo = String.Empty;
private decimal _serialNo = 0;
private string _creditDebit = "0";
private string _feeTypeCode = String.Empty;
private decimal _distCount = 0;
private decimal _price = 0;
private decimal _fsTotal = 0;
private decimal _jsTotal = 0;
private string _remark = String.Empty;
#endregion
#region Public Properties
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
public string BillNo
{
get { return _billNo; }
set { _billNo = value; }
}
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
public decimal SerialNo
{
get { return _serialNo; }
set { _serialNo = value; }
}
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
public string CreditDebit
{
get { return _creditDebit; }
set { _creditDebit = value; }
}
[ModelDB]
public string FeeTypeCode
{
get { return _feeTypeCode; }
set { _feeTypeCode = value; }
}
[ModelDB]
public decimal DistCount
{
get { return _distCount; }
set { _distCount = value; }
}
[ModelDB]
public decimal Price
{
get { return _price; }
set { _price = value; }
}
[ModelDB]
public decimal FsTotal
{
get { return _fsTotal; }
set { _fsTotal = value; }
}
[ModelDB]
public decimal JsTotal
{
get { return _jsTotal; }
set { _jsTotal = value; }
}
[ModelDB]
public string Remark
{
get { return _remark; }
set { _remark = value; }
}
#endregion
public WlPcFee()
{
TableName = "tWlPcFee";
}
}
#region 参照部分
#endregion
}