sm_shop.php 816 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. ////////////////////
  3. // 由CodeGenerator创建。
  4. // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  5. // author: gwang
  6. // 日期: 2025-01-14 09:51:58
  7. ////////////////////
  8. /**
  9. * Static Model shop 商城总表
  10. */
  11. class sm_shop
  12. {
  13. /**
  14. * @var Int32 商品ID
  15. */
  16. public $typeId;
  17. /**
  18. * @var String 商品名称
  19. */
  20. public $name;
  21. /**
  22. * @var String 商品描述
  23. */
  24. public $desc;
  25. /**
  26. * @var Int32 价格
  27. */
  28. public $price;
  29. /**
  30. * @var String 定价类型(g:金币, c:元宝, y:人民币) default(y)
  31. */
  32. public $priceType;
  33. /**
  34. * @var Int32 商城道具ID default(0)
  35. */
  36. public $shopItemTypeId;
  37. /**
  38. * @var String 商城道具类型 default(cash)
  39. */
  40. public $shopItemType;
  41. }