123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace app\modules\car\models;
- use Yii;
- /**
- * This is the model class for table "{{%f_fluc_fuel_hkm}}".
- *
- * @property int $id 序号
- * @property string|null $city 地市
- * @property int|null $year 年
- * @property int|null $month 月
- * @property float|null $fuel_hkm 百公里油耗
- */
- class FFlucFuelHkm extends \app\common\models\EActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%f_fluc_fuel_hkm}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['year', 'month'], 'integer'],
- [['fuel_hkm'], 'number'],
- [['city'], 'string', 'max' => 255],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => '序号',
- 'city' => '地市',
- 'year' => '年',
- 'month' => '月',
- 'fuel_hkm' => '百公里油耗',
- ];
- }
- }
|