| 12345678910111213141516171819202122232425 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhOrderMonthNum".
- *
- * @property int $id
- * @property int $year 年
- * @property int $month 月份
- * @property int $riseNum 增加数量
- * @property int $totalNum 总数量
- * @property int $sjId 商家id
- */
- class xhOrderMonthNum extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhOrderMonthNum';
- }
- }
|