BillCode.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. [Serializable]
  5. public class BillCode
  6. {
  7. private string _ruleid;
  8. private string _entid;
  9. private string _orgid;
  10. private int _frec;
  11. private int _recnum;
  12. private int _retentiontime;
  13. private string _stationcode;
  14. public BillCode()
  15. {
  16. }
  17. public string RULEID
  18. {
  19. get { return _ruleid; }
  20. set { _ruleid = value; }
  21. }
  22. public string ENTID
  23. {
  24. get { return _entid; }
  25. set { _entid = value; }
  26. }
  27. public string ORGID
  28. {
  29. get { return _orgid; }
  30. set { _orgid = value; }
  31. }
  32. public int FREC
  33. {
  34. get { return _frec; }
  35. set { _frec = value; }
  36. }
  37. public int RECNUM
  38. {
  39. get { return _recnum; }
  40. set { _recnum = value; }
  41. }
  42. public int RETENTIONTIME
  43. {
  44. get { return _retentiontime; }
  45. set { _retentiontime = value; }
  46. }
  47. public string STATIONCODE
  48. {
  49. get { return _stationcode; }
  50. set { _stationcode = value; }
  51. }
  52. }