| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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 $merchantId 商家id
- */
- class xhOrderDayNum extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhOrderDayNum';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['time', 'riseNum', 'totalNum', 'merchantId'], 'integer'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'time' => 'Time',
- 'riseNum' => 'Rise Num',
- 'totalNum' => 'Total Num',
- 'merchantId' => 'Merchant ID',
- ];
- }
- }
|