PushSupplyTotal.cs 563 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class PushSupplyTotal
  8. {
  9. private string _goodsid;
  10. private decimal _totalsupnum;
  11. public PushSupplyTotal()
  12. {
  13. }
  14. public string GoodsId
  15. {
  16. get { return _goodsid; }
  17. set { _goodsid = value; }
  18. }
  19. public decimal TotalSupNum
  20. {
  21. get { return _totalsupnum; }
  22. set { _totalsupnum = value; }
  23. }
  24. }
  25. }