PurShipmentOrderDT.cs 887 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class PurShipmentOrderDT
  8. {
  9. private int _billno;
  10. private int _shipmentid;
  11. private int _isdelete;
  12. private DateTime _creationtime;
  13. public PurShipmentOrderDT()
  14. {
  15. }
  16. public int BillNo
  17. {
  18. get { return _billno; }
  19. set { _billno = value; }
  20. }
  21. public int ShipmentId
  22. {
  23. get { return _shipmentid; }
  24. set { _shipmentid = value; }
  25. }
  26. public int IsDelete
  27. {
  28. get { return _isdelete; }
  29. set { _isdelete = value; }
  30. }
  31. public DateTime CreationTime
  32. {
  33. get { return _creationtime; }
  34. set { _creationtime = value; }
  35. }
  36. }
  37. }