using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace DSWeb.Models { public class CwVouchersEntity { private string _ordno; /// /// 唯一编码 /// public string ORDNO { get { return _ordno; } set { _ordno = value; } } private string _vouno; /// /// 自动生成编号,月初清零 /// public string VOUNO { get { return _vouno; } set { _vouno = value; } } private string _vkno; /// /// 凭证字 /// public string VKNO { get { return _vkno; } set { _vkno = value; } } private DateTime _voudate; /// /// 凭证日期 /// public DateTime VOUDATE { get { return _voudate; } set { _voudate = value; } } private string _accyear; /// /// 年 /// public string ACCYEAR { get { return _accyear; } set { _accyear = value; } } private string _accmonth; /// /// 月 /// public string ACCMONTH { get { return _accmonth; } set { _accmonth = value; } } private int _attachs; /// /// 附件(单据)数 /// public int ATTACHS { get { return _attachs; } set { _attachs = value; } } private decimal _amtdr; /// /// 本位币借方 /// public decimal AMTDR { get { return _amtdr; } set { _amtdr = value; } } private decimal _amtcr; /// /// 本位币贷方 /// public decimal AMTCR { get { return _amtcr; } set { _amtcr = value; } } private string _fcy; /// /// 是否含有外币科目 /// public string FCY { get { return _fcy; } set { _fcy = value; } } private string _qty; /// /// 是否含有数量科目 /// public string QTY { get { return _qty; } set { _qty = value; } } private string _vouprop; /// /// 凭证属性 /// public string VOUPROP { get { return _vouprop; } set { _vouprop = value; } } private string _prepared; /// /// 制单人 /// public string PREPARED { get { return _prepared; } set { _prepared = value; } } private string _checked; /// /// 审核人 /// public string CHECKED { get { return _checked; } set { _checked = value; } } private string _entered; /// /// 记账人 /// public string ENTERED { get { return _entered; } set { _entered = value; } } private string _errmsg; /// /// 错误信息 /// public string ERRMSG { get { return _errmsg; } set { _errmsg = value; } } private bool _isdelete; /// /// 是否废除 /// public bool ISDELETE { get { return _isdelete; } set { _isdelete = value; } } private string _deleteuser; /// /// 废除操作人 /// public string DELETEUSER { get { return _deleteuser; } set { _deleteuser = value; } } private DateTime _deletetime; /// /// 废除时间 /// public DateTime DELETETIME { get { return _deletetime; } set { _deletetime = value; } } private string _vouallno; /// /// 年+月+自动生成编号=凭证号 /// public string VOUALLNO { get { return _vouallno; } set { _vouallno = value; } } private string _CarryOverType; /// /// CarryOverType /// public string CarryOverType { get { return _CarryOverType; } set { _CarryOverType = value; } } } }