CarBillSourseEntity.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace com.steering.pss.ydm.entity
  6. {
  7. public class CarBillSourseEntity
  8. {
  9. private string judgeStoveNo;
  10. public string JudgeStoveNo
  11. {
  12. get { return judgeStoveNo; }
  13. set { judgeStoveNo = value; }
  14. }
  15. private string batchNo;
  16. public string BatchNo
  17. {
  18. get { return batchNo; }
  19. set { batchNo = value; }
  20. }
  21. private string batchGroudNo;
  22. public string BatchGroudNo
  23. {
  24. get { return batchGroudNo; }
  25. set { batchGroudNo = value; }
  26. }
  27. private string storageNo;
  28. public string StorageNo
  29. {
  30. get { return storageNo; }
  31. set { storageNo = value; }
  32. }
  33. private string actNum;
  34. public string ActNum
  35. {
  36. get { return actNum; }
  37. set { actNum = value; }
  38. }
  39. private string actWgt;
  40. public string ActWgt
  41. {
  42. get { return actWgt; }
  43. set { actWgt = value; }
  44. }
  45. private string locationNo;
  46. public string LocationNo
  47. {
  48. get { return locationNo; }
  49. set { locationNo = value; }
  50. }
  51. }
  52. }