123456789101112131415161718 |
- <?php
- namespace app\admin\model;
- use think\Model;
- class Fieldrules extends Model{
- protected $table = 'cp_field_rules';
- protected $autoWriteTimestamp = true;
- public function admin(){
- return $this->hasOne('Admin', 'id', 'admin_id');
- }
-
- }
|