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

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\common\validate;
use think\Validate;
/**
* <!--partmanage-->
* PdmPurchasecode 验证器
* Class PdmPurchasecode
* @package app\common\validate
*/
class PdmPurchasecode extends Validate
{
/**
* 验证规则
*/
protected $rule = [
];
/**
* 提示消息
*/
protected $message = [
];
/**
* 验证场景
*/
protected $scene = [
'add' => [],
'edit' => [],
];
}