using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.ASKEntity { public class VouchKey { private int _id = 0; /// /// 单据表头主键ID /// public int ID { get { return _id; } set { _id = value; } } private int _did = 0; /// /// 单据表体主键ID /// public int DID { get { return _did; } set { _did = value; } } /// /// 插入记账表用 单据类型 /// public string cVouchTypeUN { get; set; } /// /// 插入记账表用 业务类型 /// public string cBustypeUN { get; set; } /// /// 记账表名 /// public string TableName { get; set; } public bool UpdateTodoQuantity { get; set; } } }