12345678910111213141516171819 |
- <?php
- /**
- * Created by PhpStorm.
- * User: zilongs
- * Date: 20-9-29
- * Time: 上午11:12
- */
- namespace App\Models;
- class DocterSetting extends BaseModel
- {
- protected $table="docter_settings";
- public function organization()
- {
- return $this->belongsTo(Organization::class,'org_id','id');
- }
- }
|