| 12345678910111213141516171819202122232425 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhStatDealByDay".
- *
- * @property integer $id
- * @property integer $time
- * @property integer $riseNum
- * @property integer $totalNum
- * @property integer $sjId
- * @property string $createTime
- */
- class xhStatDealByDay extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhStatDealByDay';
- }
- }
|