123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CoreEntity.Entity
- {
- [Serializable]
- public class PlanGoodsDT
- {
- private int _billno;
- private int _billsn;
- private string _entid;
- private int _billsort;
- private int _rfbillno;
- private int _rfbillsn;
- private decimal _taxamount;
- private decimal _ptaxamount;
- private string _payddate;
- private string _issettle;
- private decimal _jiesje;
- private string _remark;
- public PlanGoodsDT()
- {
- }
- public int BillNo
- {
- get { return _billno; }
- set { _billno = value; }
- }
- public int BillSn
- {
- get { return _billsn; }
- set { _billsn = value; }
- }
- public string EntId
- {
- get { return _entid; }
- set { _entid = value; }
- }
- public int BillSort
- {
- get { return _billsort; }
- set { _billsort = value; }
- }
- public int RfBillNo
- {
- get { return _rfbillno; }
- set { _rfbillno = value; }
- }
- public int RfBillSn
- {
- get { return _rfbillsn; }
- set { _rfbillsn = value; }
- }
- public decimal TaxAmount
- {
- get { return _taxamount; }
- set { _taxamount = value; }
- }
- public decimal PTaxAmount
- {
- get { return _ptaxamount; }
- set { _ptaxamount = value; }
- }
- public string PayDdate
- {
- get { return _payddate; }
- set { _payddate = value; }
- }
- public string IsSettle
- {
- get { return _issettle; }
- set { _issettle = value; }
- }
- public decimal jiesje
- {
- get { return _jiesje; }
- set { _jiesje = value; }
- }
- public string Remark
- {
- get { return _remark; }
- set { _remark = value; }
- }
- }
- }
|