纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

40 lines
987 B

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; }
public bool UpdateTodoQuantity { get; set; }
}
}