1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace common\models;
- use Yii;
- /**
- * This is the model class for table "operational_adjustments_dimension".
- *
- * @property int $id
- * @property int $accident_id
- * @property int $operational_adjustments_id
- * @property int $type
- * @property int $status
- * @property string $content
- * @property int $update_time
- */
- class OperationalAdjustmentsDimension extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'operational_adjustments_dimension';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- ];
- }
- }
|