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.
102 lines
2.7 KiB
C#
102 lines
2.7 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Configuration;
|
|
using System.Web;
|
|
using System.Web.Security;
|
|
using System.Web.UI;
|
|
using System.Web.UI.HtmlControls;
|
|
using System.Web.UI.WebControls;
|
|
using System.Web.UI.WebControls.WebParts;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class AmendEntity
|
|
{
|
|
private string _gid;//主键唯一值
|
|
private string _bsno;//委托业务编号
|
|
private string _parent_id;//分组编号 根据GroupID将通过更改单增加的委托信息关联起来
|
|
private int _fee_status;//委托业务 费用状态
|
|
private DateTime _acc_date;//财务日期
|
|
private string _create_user;//创建人
|
|
private DateTime _create_time;//创建时间
|
|
private string _reason;//更改原因
|
|
private string _remarks;//备注信息
|
|
|
|
public AmendEntity()
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// 主键唯一值
|
|
/// </summary>
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 委托业务编号
|
|
/// </summary>
|
|
public string BSNO
|
|
{
|
|
get { return _bsno; }
|
|
set { _bsno = value; }
|
|
}
|
|
/// <summary>
|
|
/// 分组编号 根据GroupID将通过更改单增加的委托信息关联起来
|
|
/// </summary>
|
|
public string ParentID
|
|
{
|
|
get { return _parent_id; }
|
|
set { _parent_id = value; }
|
|
}
|
|
/// <summary>
|
|
/// 委托业务 费用状态
|
|
/// </summary>
|
|
public int FeeStatus
|
|
{
|
|
get { return _fee_status; }
|
|
set { _fee_status = value; }
|
|
}
|
|
/// <summary>
|
|
/// 财务日期
|
|
/// </summary>
|
|
public DateTime ACCDate
|
|
{
|
|
get { return _acc_date; }
|
|
set { _acc_date = value; }
|
|
}
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
public string CreateUser
|
|
{
|
|
get { return _create_user; }
|
|
set { _create_user = value; }
|
|
}
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CreateTime
|
|
{
|
|
get { return _create_time; }
|
|
set { _create_time = value; }
|
|
}
|
|
/// <summary>
|
|
/// 更改原因
|
|
/// </summary>
|
|
public string Reason
|
|
{
|
|
get { return _reason; }
|
|
set { _reason = value; }
|
|
}
|
|
/// <summary>
|
|
/// 备注信息
|
|
/// </summary>
|
|
public string Remarks
|
|
{
|
|
get { return _remarks; }
|
|
set { _remarks = value; }
|
|
}
|
|
}
|
|
}
|