Files
heping-api/app/model/AppUserRelation.php
2022-09-16 14:14:25 +08:00

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;
}