增加物料分类的功能部分代码

This commit is contained in:
panx
2024-08-17 16:39:10 +08:00
parent 9bd8d44c1d
commit c26870b8c5
9 changed files with 591 additions and 3 deletions

View File

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