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.
167 lines
3.9 KiB
C#
167 lines
3.9 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.RptCtBankReconciliation
|
|
{
|
|
[JsonObject]
|
|
public class RptCtBankReconciliation : ModelObjectBillHead
|
|
{
|
|
#region 读写属性
|
|
private string _gid = "";
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
|
|
private string _item1 = "";
|
|
/// <summary>
|
|
/// 日记账项目
|
|
/// </summary>
|
|
[ModelDB]
|
|
public string ITEM1
|
|
{
|
|
get { return _item1; }
|
|
set { _item1 = value; }
|
|
}
|
|
|
|
private decimal _amount1 = 0;
|
|
/// <summary>
|
|
/// 日记账金额
|
|
/// </summary>
|
|
[ModelDB]
|
|
public decimal AMOUNT1
|
|
{
|
|
get { return _amount1; }
|
|
set { _amount1 = value; }
|
|
}
|
|
|
|
private int _linenum1 = 0;
|
|
/// <summary>
|
|
/// 行号1
|
|
/// </summary>
|
|
[ModelDB]
|
|
public int LINENUM1
|
|
{
|
|
get { return _linenum1; }
|
|
set { _linenum1 = value; }
|
|
}
|
|
|
|
private int _ROWNUM1 = 0;
|
|
/// <summary>
|
|
/// 凭证行号1
|
|
/// </summary>
|
|
[ModelDB]
|
|
public int ROWNUM1
|
|
{
|
|
get { return _ROWNUM1; }
|
|
set { _ROWNUM1 = value; }
|
|
}
|
|
|
|
private string _item2 = "";
|
|
/// <summary>
|
|
/// 对账单项目
|
|
/// </summary>
|
|
[ModelDB]
|
|
public string ITEM2
|
|
{
|
|
get { return _item2; }
|
|
set { _item2 = value; }
|
|
}
|
|
|
|
private decimal _amount2 = 0;
|
|
/// <summary>
|
|
/// 对账単金额
|
|
/// </summary>
|
|
[ModelDB]
|
|
public decimal AMOUNT2
|
|
{
|
|
get { return _amount2; }
|
|
set { _amount2 = value; }
|
|
}
|
|
|
|
private int _linenum2 = 0;
|
|
/// <summary>
|
|
/// 行号2
|
|
/// </summary>
|
|
[ModelDB]
|
|
public int LINENUM2
|
|
{
|
|
get { return _linenum2; }
|
|
set { _linenum2 = value; }
|
|
}
|
|
|
|
private int _ROWNUM2 = 0;
|
|
/// <summary>
|
|
/// 凭证行号2
|
|
/// </summary>
|
|
[ModelDB]
|
|
public int ROWNUM2
|
|
{
|
|
get { return _ROWNUM2; }
|
|
set { _ROWNUM2 = value; }
|
|
}
|
|
|
|
private string _startgid = "";
|
|
/// <summary>
|
|
/// 账套启用GID
|
|
/// </summary>
|
|
[ModelDB(MDBType = ModelDBOprationType.Insert)]
|
|
public string STARTGID
|
|
{
|
|
get { return _startgid; }
|
|
set { _startgid = value; }
|
|
}
|
|
|
|
private string _corpid = "";
|
|
/// <summary>
|
|
/// 分公司代码
|
|
/// </summary>
|
|
[ModelDB(MDBType = ModelDBOprationType.Insert)]
|
|
public string CORPID
|
|
{
|
|
get { return _corpid; }
|
|
set { _corpid = value; }
|
|
}
|
|
|
|
private string _modifieduser = "";
|
|
/// <summary>
|
|
/// 更改操作人gid
|
|
/// </summary>
|
|
[ModelDB(MDBType = ModelDBOprationType.Insert)]
|
|
public string MODIFIEDUSER
|
|
{
|
|
get { return _modifieduser; }
|
|
set { _modifieduser = value; }
|
|
}
|
|
|
|
private DateTime _modifiedtime = DateTime.Now;
|
|
/// <summary>
|
|
/// 更改操作时间
|
|
/// </summary>
|
|
[ModelDB(MDBType = ModelDBOprationType.Insert)]
|
|
public DateTime MODIFIEDTIME
|
|
{
|
|
get { return _modifiedtime; }
|
|
set { _modifiedtime = value; }
|
|
}
|
|
#endregion
|
|
|
|
public RptCtBankReconciliation()
|
|
{
|
|
TableName = "ct_bank_reconciliation";
|
|
}
|
|
|
|
override public string GetBillNoFieldName()
|
|
{
|
|
return "GID";
|
|
}
|
|
}
|
|
//
|
|
}
|