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