xhOrderDayNum.php 423 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace common\models;
  3. /**
  4. * This is the model class for table "xhOrderDayNum".
  5. *
  6. * @property int $id
  7. * @property int $time 时间戳
  8. * @property int $riseNum 增加数量
  9. * @property int $totalNum 总数量
  10. * @property int $sjId 商家id
  11. */
  12. class xhOrderDayNum extends xhBaseModel
  13. {
  14. /**
  15. * @inheritdoc
  16. */
  17. public static function tableName()
  18. {
  19. return 'xhOrderDayNum';
  20. }
  21. }