IOP-Patho/frontend/modules/patho/models/TmpOrg.php

24 lines
642 B
PHP
Raw Normal View History

2025-07-17 08:28:28 +00:00
<?php
namespace frontend\modules\patho\models;
class TmpOrg extends \yii\base\Model
{
public $name;
public $type;
public $address;
public $region;
public $size;
public $hospital_level;
public function attributeLabels()
{
return [
'name' => 'ชื่อหน่วยงาน',
'type' => 'ประเภท',
'address' => 'ที่อยู่',
'region' => 'เขตบริการ',
'size' => 'ขนาดหน่วยงาน',
'hospital_level' => 'ระดับโรงพยาบาล'
];
}
}