12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace common\models;
- use Yii;
- /**
- * This is the model class for table "emergency_response_relate_to_rules_points".
- *
- * @property int $id
- * @property int $emergency_response_id
- * @property int $rules_point_id
- */
- class EmergencyResponseRelateToRulesPoints extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'emergency_response_relate_to_rules_points';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- ];
- }
- }
|