1234567891011121314151617181920212223 |
- <?php
- namespace app\common\validate;
- use think\Validate;
- class HumanEnterpriseValidate extends Validate
- {
- protected $rule = [
- 'name' => 'require',
- 'tel' => 'require',
- 'address' => 'require',
- 'introduction' => 'require',
- ];
- protected $message = [
- 'name' => '企业名称不能为空',
- 'tel' => '联系电话不能为空',
- 'address' => '企业地址不能为空',
- 'introduction' => '企业简介不能为空',
- ];
- }
|