| 123456789101112131415161718192021222324 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhOrderDayNum".
- *
- * @property int $id
- * @property int $time 时间戳
- * @property int $riseNum 增加数量
- * @property int $totalNum 总数量
- * @property int $sjId 商家id
- */
- class xhOrderDayNum extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhOrderDayNum';
- }
- }
|