添加测试的代码生成以及采购编码的页面的代码生成

This commit is contained in:
panx
2024-08-23 16:04:38 +08:00
parent 3566f03653
commit abccb6c47c
19 changed files with 1397 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
namespace app\admin\validate;
use think\Validate;
/**
* <!---->
* Ceshi 验证器
* Class Ceshi
* @package app\admin\validate
*/
class Ceshi extends Validate
{
/**
* 验证规则
*/
protected $rule = [
];
/**
* 提示消息
*/
protected $message = [
];
/**
* 验证场景
*/
protected $scene = [
'add' => [],
'edit' => [],
];
}