123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace app\models\entity;
- class TmcStatus extends \yii\db\ActiveRecord
- {
- const TMC_STATUS_ISSUED = 1;
- const TMC_STATUS_IN_STORAGE = 2;
- const TMC_STATUS_REPAIR = 3;
- const TMC_STATUS_TRANSFERRED = 4;
- const TMC_STATUS_DECOMMISSION = 5;
- const TMC_STATUS_IN_CHARGE = 6;
-
- public static function tableName()
- {
- return 'tmc_status';
- }
-
- public function rules()
- {
- return [
- [['title'], 'string', 'max' => 255],
- ];
- }
- }
|