sm_shop_daily.php 954 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. ////////////////////
  3. // 由CodeGenerator创建。
  4. // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  5. // author: gwang
  6. // 日期: 2023-08-08 14:24:32
  7. ////////////////////
  8. /**
  9. * Static Model shop_daily 每日商店
  10. */
  11. class sm_shop_daily
  12. {
  13. /**
  14. * @var Int32 用途未知!!请到数据库中添加字段注释。
  15. */
  16. public $id;
  17. /**
  18. * @var Int32 物品id
  19. */
  20. public $typeId;
  21. /**
  22. * @var Int32 物品的类型,1钻石;2图纸;3装备;4配件宝箱
  23. */
  24. public $type;
  25. /**
  26. * @var Int32 花费钱的类型 1:免费;2金币;3钻石;
  27. */
  28. public $costType;
  29. /**
  30. * @var Int32 花费钱的数量
  31. */
  32. public $costNum;
  33. /**
  34. * @var Int32 折扣
  35. */
  36. public $discount;
  37. /**
  38. * @var Int32 广告的次数 default(0)
  39. */
  40. public $num;
  41. /**
  42. * @var String 奖励内容
  43. */
  44. public $reward;
  45. }