using System; using System.Data; namespace DSWeb.Models { public class JsonATCwAccitemsSetEntity { public JsonATCwAccitemsSetEntity() { } #region 读写属性 /// /// 唯一编码 /// private string _gid; public string ATCwAccitemsSet1 { get { return _gid; } set { _gid = value; } } /// /// 科目代码 /// private string _accid; public string ATCwAccitemsSet2 { get { return _accid; } set { _accid = value; } } /// /// 科目名称 /// private string _accname; public string ATCwAccitemsSet3 { get { return _accname; } set { _accname = value; } } /// /// 借贷方向 /// private string _dc; public string ATCwAccitemsSet4 { get { return _dc; } set { _dc = value; } } /// /// 是否核算外币 /// private bool _isfcy; public bool ATCwAccitemsSet5 { get { return _isfcy; } set { _isfcy = value; } } /// /// 是否核算部门 /// private bool _isdeptacc; public bool ATCwAccitemsSet6 { get { return _isdeptacc; } set { _isdeptacc = value; } } /// /// 是否核算人员 /// private bool _isemplacc; public bool ATCwAccitemsSet7 { get { return _isemplacc; } set { _isemplacc = value; } } /// /// 是否算客户门 /// private bool _iscorpacc; public bool ATCwAccitemsSet8 { get { return _iscorpacc; } set { _iscorpacc = value; } } /// /// 是否核算项目 /// private bool _isitemacc; public bool ATCwAccitemsSet9 { get { return _isitemacc; } set { _isitemacc = value; } } /// /// 备注 /// private string _remarks; public string ATCwAccitemsSet10 { get { return _remarks; } set { _remarks = value; } } /// /// 末级科目(标志) /// private bool _detailed; public bool ATCwAccitemsSet11 { get { return _detailed; } set { _detailed = value; } } #endregion } }