12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- [Serializable]
- public class BillCode
- {
- private string _ruleid;
- private string _entid;
- private string _orgid;
- private int _frec;
- private int _recnum;
- private int _retentiontime;
- private string _stationcode;
- public BillCode()
- {
- }
- public string RULEID
- {
- get { return _ruleid; }
- set { _ruleid = value; }
- }
- public string ENTID
- {
- get { return _entid; }
- set { _entid = value; }
- }
- public string ORGID
- {
- get { return _orgid; }
- set { _orgid = value; }
- }
- public int FREC
- {
- get { return _frec; }
- set { _frec = value; }
- }
- public int RECNUM
- {
- get { return _recnum; }
- set { _recnum = value; }
- }
- public int RETENTIONTIME
- {
- get { return _retentiontime; }
- set { _retentiontime = value; }
- }
- public string STATIONCODE
- {
- get { return _stationcode; }
- set { _stationcode = value; }
- }
- }
|