Files
swiftadmin/app/admin/controller/PdmSymbol.php

37 lines
735 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
declare (strict_types = 1);
namespace app\admin\controller;
use app\AdminController;
use Webman\Http\Request;
use app\common\model\PdmSymbol as PdmSymbolModel;
/**
* pdm_symbol
* 原理符号
* <!---->
* Class PdmSymbol
* @package app\admin\controller
*/
class PdmSymbol extends AdminController
{
/**
* PdmSymbol模型对象
* @var \app\common\model\PdmSymbol
*/
public function __construct()
{
parent::__construct();
$this->model = new PdmSymbolModel;
}
/**
* 默认生成的方法为index/add/edit/del/status 五个方法
* 当创建CURD的时候DIY的函数体和模板为空请自行编写代码
*/
}