123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace app\models\entity;
- use Yii;
- class Sections extends \yii\db\ActiveRecord
- {
-
- public static function tableName()
- {
- return 'sections';
- }
-
- public function rules()
- {
- return [
-
- [['date_start_repair'], 'safe'],
- [['name', 'locomotive_series', 'section_number', 'section_subnumber', 'dc_repair', 'type_repair'], 'string', 'max' => 255],
- ];
- }
-
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'name' => 'Name',
- 'locomotive_series' => 'Locomotive Series',
- 'section_number' => 'Section Number',
- 'section_subnumber' => 'Section Subnumber',
- 'dc_repair' => 'Dc Repair',
- 'type_repair' => 'Type Repair',
- 'date_start_repair' => 'Date Start Repair',
- ];
- }
- }
|