14 lines
178 B
PHP
14 lines
178 B
PHP
<?php
|
|
|
|
namespace app\model;
|
|
|
|
use think\Model;
|
|
|
|
class AppUserRelation extends Model
|
|
{
|
|
|
|
protected $table = 'fa_app_user_relation';
|
|
|
|
protected $autoWriteTimestamp = true;
|
|
|
|
} |