You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
347 B
23 lines
347 B
<?php
|
|
/**
|
|
* Created by 安徽云掌信息技术有限公司.捕梦者团队
|
|
* User: 云掌.邦德
|
|
* Date: 2024.2024/4/23.下午11:19
|
|
* Desc:
|
|
*/
|
|
declare (strict_types=1);
|
|
|
|
namespace app\adminapi\model;
|
|
|
|
use think\Model;
|
|
|
|
/**
|
|
* @mixin \think\Model
|
|
*/
|
|
class Demo extends Model
|
|
{
|
|
public function list()
|
|
{
|
|
return 'list';
|
|
}
|
|
}
|
|
|