using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ICSSoft.Entity
{
    public class VouchKey
    {
        private int _id = 0;
        /// <summary>
        /// 单据表头主键ID
        /// </summary>
        public int ID { get { return _id; } set { _id = value; } }

        private int _did = 0;
        /// <summary>
        /// 单据表体主键ID
        /// </summary>
        public int DID { get { return _did; } set { _did = value; } }

        /// <summary>
        /// 插入记账表用 单据类型 
        /// </summary>
        public string cVouchTypeUN { get; set; }

        /// <summary>
        /// 插入记账表用 业务类型
        /// </summary>
        public string cBustypeUN { get; set; }

        /// <summary>
        /// 记账表名
        /// </summary>
        public string TableName { get; set; }
    }
}