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.
|
|
|
|
using System;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.Models
|
|
|
|
|
{
|
|
|
|
|
public class ATCwAccitemsSetEntity
|
|
|
|
|
{
|
|
|
|
|
public ATCwAccitemsSetEntity()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region 读写属性
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 唯一编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _gid;
|
|
|
|
|
public string GID
|
|
|
|
|
{
|
|
|
|
|
get { return _gid; }
|
|
|
|
|
set { _gid = value; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 科目代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _accid;
|
|
|
|
|
public string ACCID
|
|
|
|
|
{
|
|
|
|
|
get { return _accid; }
|
|
|
|
|
set { _accid = value; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 科目名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _accname;
|
|
|
|
|
public string ACCNAME
|
|
|
|
|
{
|
|
|
|
|
get { return _accname; }
|
|
|
|
|
set { _accname = value; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 末级科目(标志)
|
|
|
|
|
/// </summary>
|
|
|
|
|
private bool _detailed;
|
|
|
|
|
public bool DETAILED
|
|
|
|
|
{
|
|
|
|
|
get { return _detailed; }
|
|
|
|
|
set { _detailed = value; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 借贷方向
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _dc;
|
|
|
|
|
public string DC
|
|
|
|
|
{
|
|
|
|
|
get { return _dc; }
|
|
|
|
|
set { _dc = value; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否核算外币
|
|
|
|
|
/// </summary>
|
|
|
|
|
private bool _isfcy;
|
|
|
|
|
public bool ISFCY
|
|
|
|
|
{
|
|
|
|
|
get { return _isfcy; }
|
|
|
|
|
set { _isfcy = value; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否核算部门
|
|
|
|
|
/// </summary>
|
|
|
|
|
private bool _isdeptacc;
|
|
|
|
|
public bool ISDEPTACC
|
|
|
|
|
{
|
|
|
|
|
get { return _isdeptacc; }
|
|
|
|
|
set { _isdeptacc = value; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否核算人员
|
|
|
|
|
/// </summary>
|
|
|
|
|
private bool _isemplacc;
|
|
|
|
|
public bool ISEMPLACC
|
|
|
|
|
{
|
|
|
|
|
get { return _isemplacc; }
|
|
|
|
|
set { _isemplacc = value; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否算客户门
|
|
|
|
|
/// </summary>
|
|
|
|
|
private bool _iscorpacc;
|
|
|
|
|
public bool ISCORPACC
|
|
|
|
|
{
|
|
|
|
|
get { return _iscorpacc; }
|
|
|
|
|
set { _iscorpacc = value; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否核算项目
|
|
|
|
|
/// </summary>
|
|
|
|
|
private bool _isitemacc;
|
|
|
|
|
public bool ISITEMACC
|
|
|
|
|
{
|
|
|
|
|
get { return _isitemacc; }
|
|
|
|
|
set { _isitemacc = value; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 备注
|
|
|
|
|
/// </summary>
|
|
|
|
|
private string _remarks;
|
|
|
|
|
public string REMARKS
|
|
|
|
|
{
|
|
|
|
|
get { return _remarks; }
|
|
|
|
|
set { _remarks = value; }
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|