登录、模板操作

This commit is contained in:
2025-05-12 13:12:57 +08:00
parent 8ee9ab1b92
commit 8e30209540
15 changed files with 1114 additions and 39 deletions

View File

@@ -0,0 +1,38 @@
<?php
namespace App\Http\Controllers\core;
use App\BaseApp\BaseController;
use App\Service\core\CodeGenerationService;
use App\Service\LoginService;
use Illuminate\Http\JsonResponse;
class codeGenerationController extends BaseController
{
//
public function __construct()
{
parent::__construct();
$this->service = CodeGenerationService::getInstance();
}
public function generation()
{
$this->insertField = [
'class_name',
'class_comment',
'sort',
'icon',
'pid',
'field',
];
$params = $this->checkRequiredFields(request()->post());
return $this->service->generate($params);
// return jok(
// $this->service->generate([])
// );
}
}

View File

@@ -3,6 +3,7 @@
namespace App\Models;
use App\BaseApp\BaseModel;
use Illuminate\Database\Eloquent\Relations\HasOne;
class AdminModel extends BaseModel
{
@@ -14,4 +15,9 @@ class AdminModel extends BaseModel
* @var list<string>
*/
protected $guarded = [];
public function role(): HasOne
{
return $this->hasOne(RoleModel::class, 'id', 'role_id');
}
}

View File

@@ -38,7 +38,7 @@ class AdminService extends BaseService
public function list(): array
{
$this->with = [
'roles'
'role'
];
$result = $this->getPageList();
@@ -173,7 +173,7 @@ class AdminService extends BaseService
public function myInfo(): mixed
{
$this->with = [
'roles'
'role'
];
$result = $this->getDetail($this->userId);
$result['created_day_at'] = format_time(strtotime($result['created_at']), 'Y-m-d');

View File

@@ -2,34 +2,16 @@
namespace App\Service;
use App\BaseApp\BaseNotAuthService;
use App\Models\AdminModel;
use App\Service\common\JWTService;
use App\Service\common\UtilsService;
use Exception;
use Illuminate\Support\Str;
class LoginService
class LoginService extends BaseNotAuthService
{
/**
* @var mixed 单例实例,确保该类只有一个全局实例
*/
private static mixed $_instance;
/**
* 获取实例
* @return null|static
*/
public static function getInstance(): null|static
{
$name = get_called_class();
if (!isset(self::$_instance[$name])) {
self::$_instance[$name] = new static();
}
return self::$_instance[$name];
}
/**
* 登录
* @param $phone
@@ -39,19 +21,19 @@ class LoginService
*/
public function login($phone, $password): array
{
$userModel = AdminModel::with(['roles:id,name,value'])->where('phone', $phone)->first();
$userModel = AdminModel::with(['role:id,name,value'])->where('phone', $phone)->first();
if (empty($userModel)) {
UtilsService::getInstance()->errorThrow('用户或密码错误!');
// return $this->register($phone, $password);
}
if (!password_verify($password, $userModel->password)) {
UtilsService::getInstance()->errorThrow('用户或密码错误!');
UtilsService::getInstance()->errorThrow('用户或密码错误2');
}
if ($userModel->ip !== get_ip()) {
$ipTable = json_decode($userModel->ip_table, true);
if (!in_array(get_ip(), $ipTable)) {
if (!in_array(get_ip(), $ipTable?? [])) {
$ipTable[] = get_ip();
}
$update = AdminModel::where('id', $userModel->id)->update([
@@ -72,8 +54,8 @@ class LoginService
'nick_name' => $userModel->nick_name,
'avatar' => $userModel->avatar,
'email' => $userModel->email,
'role_name' => $userModel->roles->name,
'role_value' => $userModel->roles->value,
'role_name' => $userModel->role->name,
'role_value' => $userModel->role->value,
'ip' => $userModel->ip,
'ip_table' => $userModel->ip_table,
];
@@ -114,7 +96,7 @@ class LoginService
UtilsService::getInstance()->errorThrow('注册失败!');
}
$userInfo = AdminModel::with(['roles:id,name,value'])->where('id', $createModel->id)->first();
$userInfo = AdminModel::with(['role:id,name,value'])->where('id', $createModel->id)->first();
$result = [
'id' => $userInfo->id,
@@ -122,8 +104,8 @@ class LoginService
'nick_name' => $userInfo->nick_name,
'avatar' => $userInfo->avatar,
'email' => $userInfo->email?? '',
'role_name' => $userInfo->roles->name,
'role_value' => $userInfo->roles->value,
'role_name' => $userInfo->role->name,
'role_value' => $userInfo->role->value,
'ip' => $userInfo->ip,
'ip_table' => $userInfo->ip_table,
];

View File

@@ -94,14 +94,33 @@ class UtilsService
*/
public function genOpenId(): string
{
// 获取当前时间戳(精确到秒
$timestamp = dechex(time());
// 获取微秒级时间戳(提高时间精度
$microtime = microtime(true);
$timestamp = dechex(floor($microtime)); // 秒部分
$microsec = dechex(($microtime - floor($microtime)) * 1000000); // 微秒部分
// 生成16字节的随机数据并转换为32个十六进制字符组成的字符串
$randomString = bin2hex(random_bytes(16));
// 生成更多随机字节20字节=160位熵
$randomBytes = random_bytes(20);
$randomHex = bin2hex($randomBytes);
// 结合时间和随机字符串确保总长度为28个字符
return substr($timestamp . $randomString, 0, 28);
// 获取进程ID和内存ID作为额外熵源
$pid = dechex(getmypid() % 65536); // 进程ID
$memoryId = dechex(crc32(memory_get_usage(true))); // 内存使用哈希
// 打乱组合顺序并截取28个字符
$components = [
$timestamp,
$microsec,
substr($randomHex, 0, 16),
substr($randomHex, 16, 8),
$pid,
$memoryId
];
shuffle($components); // 打乱顺序
$combined = implode('', $components);
// 最终截取(确保固定长度)
return 'nl_'. substr($combined, 0, 28);
}
/**
@@ -244,4 +263,30 @@ class UtilsService
}
}
}
// 获取项目根目录
public static function getRootPath(): string
{
return dirname(__DIR__, 3);
}
// 若文件不存在则创建文件
public static function createFileHolder($filePath): bool
{
if (!file_exists($filePath)) {
return mkdir($filePath, 777, true);
}
return true;
}
// 若文件不存在则创建文件
public static function createFile($filePath): bool
{
if (!file_exists($filePath)) {
$file = fopen($filePath, 'w');
fclose($file);
}
return true;
}
}

View File

@@ -0,0 +1,457 @@
<?php
namespace App\Service\core;
use App\BaseApp\BaseNotAuthService;
use App\Models\AdminModel;
use App\Service\common\JWTService;
use App\Service\common\UtilsService;
use Exception;
use Illuminate\Http\JsonResponse;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
use Symfony\Component\HttpFoundation\BinaryFileResponse;
use ZipArchive;
class CodeGenerationService
{
const TEXT_TYPE = [
'LONGTEXT',
'TEXT'
];
const INT_TYPE = [
'INT',
'TINYINT',
'BIGINT',
'SMALLINT',
'FLOAT',
];
private static mixed $_instance;
private ?UtilsService $utils;
// 大驼峰
private string $upperCamelCase = '';
// 小驼峰
private string $lowerCamelCase = '';
// 下划线
private string $underLineCase = '';
private string $classComment = '';
// - 连接符
private string $dashCase = '';
/**
* @var string 建表sql语句
*/
private string $sql = '';
private array $param = [];
private string $selectField = '"id"';
private string $insertField = '';
private string $updateField = '';
private string $viewForm = '';
private string $viewSearch = '';
private string $searchField = '';
private string $viewData = '';
private array $tmpFile = [];
public function __construct()
{
$this->utils = UtilsService::getInstance();
}
/**
* 获取实例
* @return null|static
*/
public static function getInstance(): null|static
{
$name = get_called_class();
if (!isset(self::$_instance[$name])) {
self::$_instance[$name] = new static();
}
return self::$_instance[$name];
}
/**
* 创建临时文件夹,复制模板文件,压缩并返回文件流
*/
public function download(): BinaryFileResponse|JsonResponse
{
try {
// 模块名称
$moduleName = '会员模块';
// 检查/app/public/zip/code-generation/
if (!Storage::exists('zip/code-generation')) {
Storage::makeDirectory('zip/code-generation');
}
// 生成唯一的临时目录名
$tempDir = 'temp/templates/'. $moduleName. '-' . uniqid();
Storage::makeDirectory($tempDir);
// 获取模板文件内容
$templatePath = app_path('template/api/TemplateController.php');
if (!File::exists($templatePath)) {
return response()->json(['error' => '模板文件不存在'], 404);
}
$templateContent = File::get($templatePath);
$tempFilePath = "{$tempDir}/TemplateController.php";
Storage::put($tempFilePath, $templateContent);
$zip = new ZipService();
$zipFile = storage_path("/app/public/zip/code-generation/{$moduleName}.zip");//生成压缩文件的路径
$path = app_path('template');//被压缩文件夹的路径
$zip->zip($zipFile ,$path );
// 返回下载 $path 文件流
return response()->download($zipFile, "{$moduleName}.zip", ['Content-Type' => 'application/zip']);
} catch (\Exception $e) {
return response()->json([
'error' => '生成模板文件失败',
'message' => $e->getMessage()
], 500);
}
}
private function init()
{
// 处理类名、表名
$this->upperCamelCase = ucfirst($this->param['class_name']);
$this->lowerCamelCase = lcfirst($this->param['class_name']);
$this->underLineCase = strtolower(preg_replace('/([A-Z])/', '_$1', $this->param['class_name']));
$this->dashCase = str_replace('_', '-', $this->underLineCase);
$this->classComment = $this->param['class_comment'];
}
/**
* 代码生成主逻辑
*
* @param $params
* @throws Exception
*/
public function generate($params)
{
$this->param = $params;
DB::beginTransaction();
try {
// 初始化信息
$this->init();
// 生成数据库
$this->genDatabase();
// 生成控制器
$this->genController();
// 生成服务层
$this->genService();
// 生成模型层
$this->genModel();
// 生成路由
$this->genRoute();
// 执行sql
$this->querySql();
ds([
'data' => [
'sql' => $this->sql,
'upperCamelCase' => $this->upperCamelCase,
'lowerCamelCase' => $this->lowerCamelCase,
'underLineCase' => $this->underLineCase,
'dashCase' => $this->dashCase,
'classComment' => $this->classComment,
],
'tmp' => $this->tmpFile,
'params' => $this->param,
]);
// // 生成导出层
// $this->genExport();
// // 生成导入层
// $this->genImport();
// // 生成视图
// $this->genViews();
// // 生成菜单
// $this->genMenu();
} catch (Exception $e) {
DB::rollBack();
ds([
'error' => '生成代码失败',
'message' => $e->getMessage(),
'line' => $e->getLine(),
]);
$this->utils->errorThrow($e->getMessage());
}
return $this->download();
}
/**
* 生成 数据库表
*
* @return true
* @throws Exception
*/
public function genDatabase(): bool
{
$tableName = config('database.prefix', 'nl_'). $this->underLineCase;
// 默认sql语句
$sql = "CREATE TABLE `{$tableName}` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID', ";
$sqlTime =
" `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态 0正常 1禁用',"
. " `created_at` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',"
. "`updated_at` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',"
. "`deleted_at` int(11) NOT NULL DEFAULT '0' COMMENT '删除时间',";
$sqlEnd = "PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='{$this->classComment}表';";
foreach ($this->param['field'] as $v) {
// 处理所需的字段
$this->checkSelectField($v);
// 处理备注
if (empty($v['comment'])) $v['comment'] = "''";
// 处理是否为空
$v['null'] = !$v['null'] ? '' : 'NOT';
// 处理默认值
if (array_key_exists('default', $v) && isset($v['default'])) {
$v['default'] = 'DEFAULT ' . "'{$v['default']}'";
} else {
$v['default'] = (strpos($v['type'], 'INT') || in_array($v['type'], self::INT_TYPE)) ? 'DEFAULT ' . 0 : 'DEFAULT ' . '\'\'';
}
if (in_array($v['type'], self::TEXT_TYPE)) {
// 编写sql语句
$sql .= " {$v['name']} {$v['type']} {$v['null']} NULL COMMENT '{$v['comment']}', ";
} else {
// 编写sql语句
$sql .= " {$v['name']} {$v['type']}({$v['type_number']}) {$v['default']} {$v['null']} NULL COMMENT '{$v['comment']}', ";
}
}
$this->sql = $sql . $sqlTime . $sqlEnd;
return true;
}
/**
* 修改api配置文件
*
* @return void
* @throws Exception
*/
private function genRoute(): void
{
$apiPath = app_path('../routes/api.php');
$apiFile = file_get_contents($apiPath, 'y');
$newApi =
"'{$this->dashCase}' => \App\Http\Controllers\Api\CodeGeneration\\{$this->upperCamelCase}Controller::class, // {$this->classComment}} \r\n // 需要登录的路由生成地址";
$updateNewFile = str_replace('// 需要登录的路由生成地址', $newApi, $apiFile);
$updateFile = file_put_contents($apiPath, $updateNewFile);
if (!$updateFile) $this->utils->errorThrow('写入api文件出现了错误');
}
/**
* 生成控制器文件
* @return void
*/
private function genController(): void
{
$this->strReplaceTmp(
app_path('template/api/TemplateController.php'),
app_path("Http/Controllers/Api/CodeGeneration/{$this->upperCamelCase}Controller.php"),
'server',
'controller'
);
}
/**
* 生成服务层文件
* @return void
*/
private function genService(): void
{
$this->strReplaceTmp(
app_path('template/api/TemplateService.php'),
app_path("Service/CodeGeneration/{$this->upperCamelCase}Service.php"),
'server',
'service'
);
}
/**
* 生成模型层文件
* @return void
*/
private function genModel(): void
{
$this->strReplaceTmp(
app_path('template/api/TemplateModel.php'),
app_path("Models/{$this->upperCamelCase}Model.php"),
'server',
'model'
);
}
//
// /**
// * 生成导出层文件
// * @return void
// */
// private function genExport(): void
// {
// $this->strReplaceTmp(
// $this->basePath . $this->tmpPath['server']['export'],
// $this->basePath . $this->newPath['server']['export'],
// 'server',
// 'export'
// );
// }
//
// /**
// * 生成导入层文件
// * @return void
// */
// private function genImport(): void
// {
// $this->strReplaceTmp(
// $this->basePath . $this->tmpPath['server']['import'],
// $this->basePath . $this->newPath['server']['import'],
// 'server',
// 'import'
// );
// }
//
// /**
// * 生成前端部分文件
// * @return void
// */
// private function genViews(): void
// {
// foreach ($this->tmpPath['view'] as $k => $v) {
// $this->utils->createFileHolder($this->baseViewPath . $this->newPath['view_folder'][$k]);
// $this->strReplaceTmp(
// $this->basePath . $v,
// $this->baseViewPath . $this->newPath['view'][$k],
// 'view',
// $k
// );
// }
// }
//
// /**
// * 生成菜单/授权
// *
// * @return void
// * @throws Exception
// */
// private function genMenu(): void
// {
// ds(123);
// RoleService::getInstance()->createRoleMenuRelation(UsersEnum::ADMIN_ID, MenuService::getInstance()->save($this->menu));
// }
/**
* 模板内容替换
*
* @param $template
* @param $path
* @param $type
* @param $fileKey
* @return void
*/
private function strReplaceTmp($template, $path, $type, $fileKey): void
{
$tmpFile = file_get_contents($template);
$newFile = str_replace('upperCamelCase', $this->upperCamelCase, $tmpFile);
$newFile = str_replace('模板名称', $this->classComment, $newFile);
switch ($fileKey) {
case 'service':
$newFile = str_replace("'tmpSelectField'", $this->selectField . ', "status", "created_at", "updated_at", "deleted_at"', $newFile);
$newFile = str_replace("tmpSearchField", $this->searchField . ',status@=', $newFile);
break;
case 'controller':
$newFile = str_replace("'temInsertField'", '"' . $this->insertField . '"', $newFile);
$newFile = str_replace("'temUpdateField'", '"' . $this->updateField . '"', $newFile);
break;
// case 'export':
// $newFile = str_replace("'tmpExportField'", $this->exportField, $newFile);
// $newFile = str_replace('$row->tmpMapField,', $this->exportFieldRow, $newFile);
// break;
// case 'import':
// $newFile = str_replace("'tmpField' => \$row['tmpField'],", $this->importField, $newFile);
// break;
case 'model':
$newFile = str_replace('underLineCase', cc_camel_case_to_underscore($this->underLineCase), $newFile);
break;
case 'data':
$newFile = str_replace("// 测试列表字段", $this->viewData, $newFile);
$newFile = str_replace("// 测试搜索字段", $this->viewSearch, $newFile);
$newFile = str_replace("// 测试表单字段", $this->viewForm, $newFile);
break;
}
$this->tmpFile[$type][$fileKey] = $newFile;
if (!file_exists($path)) {
$this->utils->createFile($path);
}
file_put_contents($path, $newFile);
}
/**
* 设置默认字段
*
* @param $item
* @return void
*/
private function checkSelectField($item): void
{
if (empty($item)) return;
// 设置列表字段
if ($item['tableShow']) {
$this->selectField .= ', "' . $item['name'] . '"';
}
// 设置表单字段
if ($item['formShow']) {
$isNull = $item['null'] == 1 ? 'true' : 'false';
$this->insertField .= !empty($this->insertField) ? '","' . $item['name'] : $item['name'];
$this->updateField .= !empty($this->updateField) ? '","' . $item['name'] : 'id","' . $item['name'];
$this->viewForm .= "{\n field: '" . $item['name'] . "',\n label: '" . $item['comment'] . "',\n component: '" . $item['formType'] . "',\n required: " . $isNull . ",\n },\n ";
}
// 设置搜索字段
if ($item['search']) {
$this->viewSearch .= "{\n field: '" . $item['name'] . "',\n label: '" . $item['comment'] . "',\n component: '" . $item['formType'] . "',\n colProps: { span: 8 },\n },\n ";
$this->searchField .= !empty($this->searchField) ? ',' . $item['name'] . '@' . $item['searchValue'] : $item['name'] . '@' . $item['searchValue'];
}
// // 设置导出字段
// $this->exportField .= !empty($this->exportField) ? ',"' . $item['comment'] . '"' : '"' . $item['comment'] . '"';
// $this->exportFieldRow .= '$row->' . $item['name'] . ",\n ";
// // 设置导入字段
// $this->importField .= "'" . $item['name'] . "' => \$row['" . $item['comment'] . "'],\n ";
// 设置视图数据字段
$this->viewData .= "{\n title: '" . $item['comment'] . "',\n dataIndex: '" . $item['name'] . "',\n },\n ";
}
/**
* 执行sql
*
* @return void
* @throws Exception
*/
private function querySql(): void
{
try {
DB::statement($this->sql);
} catch (Exception $e) {
$this->utils->errorThrow($e->getMessage());
}
}
}

View File

@@ -0,0 +1,158 @@
<?php
namespace App\Service\core;
class ZipService
{
protected $zip;
protected $root;
protected $ignored_names;
public function __construct(){
$this->zip = new \ZipArchive;
}
/**
* 创建压缩文件
* Created by PhpStorm.
* User: EricPan
* Date: 2020/4/22
* Time: 10:34
* @param $zipfile
*/
private function createZipFile($zipfile)
{
if (!is_file($zipfile)) {
file_put_contents($zipfile,'');
}
}
/**
* 解压zip文件到指定文件夹
*
* @access public
* @param string $zipfile 压缩文件路径
* @param string $path 压缩包解压到的目标路径
* @return booleam 解压成功返回 true 否则返回 false
*/
public function unzip ($zipfile, $path) {
if ($this->zip->open($zipfile) === true) {
$file_tmp = @fopen($zipfile, "rb");
$bin = fread($file_tmp, 15); //只读15字节 各个不同文件类型,头信息不一样。
fclose($file_tmp);
/* 只针对zip的压缩包进行处理 */
if (true === $this->getTypeList($bin))
{
$result = $this->zip->extractTo($path);
$this->zip->close();
return $result;
}
else
{
return false;
}
}
return false;
}
/**
* 创建压缩文件
* @access public
* @param string $zipfile 将要生成的压缩文件路径
* @param string $folder 将要被压缩的文件夹路径
* @param null $ignored 要忽略的文件列表
* @return booleam|bool
* @throws \Exception
*/
public function zip ($zipfile, $folder, $ignored = null) {
$this->createZipFile($zipfile);
$this->ignored_names = (is_array($ignored) ? $ignored : $ignored) ? array($ignored) : array();
if ($this->zip->open($zipfile) !== true) {
throw new \Exception("cannot open <$zipfile>\n");
}
$folder = substr($folder, -1) == '/' ? substr($folder, 0, strlen($folder)-1) : $folder;
if(strstr($folder, '/')) {
$this->root = substr($folder, 0, strrpos($folder, '/')+1);
$folder = substr($folder, strrpos($folder, '/')+1);
}
$this->createZip($folder);
return $this->zip->close();
}
/**
* 递归添加文件到压缩包
*
* @access private
* @param string $folder 添加到压缩包的文件夹路径
* @param string $parent 添加到压缩包的文件夹上级路径
* @return void
*/
private function createZip ($folder, $parent=null) {
$full_path = $this->root . $parent . $folder;
$zip_path = $parent . $folder;
$this->zip->addEmptyDir($zip_path);
$dir = new \DirectoryIterator($full_path);
foreach($dir as $file) {
if(!$file->isDot()) {
$filename = $file->getFilename();
if(!in_array($filename, $this->ignored_names)) {
if($file->isDir()) {
$this->createZip($filename, $zip_path.'/');
}else {
//第二个参数是重命名文件名,带上路径就可以改变当前文件在压缩包里面的路径.
$this->zip->addFile($full_path.'/'.$filename, $zip_path.'/'.$filename);
}
}
}
}
}
/**
* 读取压缩包文件与目录列表
*
* @access public
* @param string $zipfile 压缩包文件
* @return array 文件与目录列表
*/
public function fileList($zipfile) {
$file_dir_list = array();
$file_list = array();
if ($this->zip->open($zipfile) == true) {
for ($i = 0; $i < $this->zip->numFiles; $i++) {
$numfiles = $this->zip->getNameIndex($i);
if (preg_match('/\/$/i', $numfiles))
{
$file_dir_list[] = $numfiles;
}
else
{
$file_list[] = $numfiles;
}
}
}
return array('files'=>$file_list, 'dirs'=>$file_dir_list);
}
/**
* 得到文件头与文件类型映射表
*
* @author wengxianhu
* @date 2013-08-10
* @param $bin string 文件的二进制前一段字符
* @return boolean
*/
private function getTypeList ($bin)
{
$array = array(
array("504B0304", "zip")
);
foreach ($array as $v)
{
$blen = strlen(pack("H*", $v[0])); //得到文件头标记字节数
$tbin = substr($bin, 0, intval($blen)); ///需要比较文件头长度
if(strtolower($v[0]) == strtolower(array_shift(unpack("H*", $tbin))))
{
return true;
}
}
return false;
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Http\Controllers\Api\CodeGeneration;
use App\BaseApp\BaseController;
use App\Service\CodeGeneration\upperCamelCaseService;
class upperCamelCaseController extends BaseController
{
//
public function __construct()
{
parent::__construct();
$this->insertField = ['temInsertField'];
$this->updateField = ['temUpdateField'];
$this->service = upperCamelCaseService::getInstance();
}
}

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Models;
use App\BaseApp\BaseModel;
class upperCamelCaseModel extends BaseModel
{
protected $table = 'underLineCase';
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $guarded = [];
}

View File

@@ -0,0 +1,87 @@
<?php
namespace App\Service\CodeGeneration;
use App\BaseApp\BaseService;
use App\Models\upperCamelCaseModel;
use Exception;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
class upperCamelCaseService extends BaseService
{
public function __construct()
{
parent::__construct();
$this->selectField = ['tmpSelectField'];
$this->queryField = ['tmpSearchField'];
$this->model = upperCamelCaseModel::class;
}
/**
* 获取模板名称列表
* @return array
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function list(): array
{
return $this->getPageList();
}
/**
* 获取模板名称详情
* @param $id
* @return mixed
* @throws Exception
*/
public function detail($id)
{
return $this->getDetail($id);
}
/**
* 模板名称下拉列表
* @return mixed
*/
public function option()
{
$this->optionField = ['id', 'name'];
return $this->getOption();
}
/**
* 创建模板名称
* @param $params
* @return mixed
* @throws Exception
*/
public function create($params): mixed
{
return $this->insert($params);
}
/**
* 编辑模板名称
* @param $id
* @param $params
* @return mixed
* @throws Exception
*/
public function update($id, $params): mixed
{
return $this->save($id, $params);
}
/**
* 删除模板名称
* @param $ids
* @return mixed|true
* @throws Exception
*/
public function delete($ids): mixed
{
return $this->del($ids);
}
}