|
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\validate\admin;
|
|
|
|
use think\Validate;
|
|
|
|
class GuaranteeTemplateValidate extends Validate
|
|
{
|
|
protected $failException = true;
|
|
|
|
protected $rule = [
|
|
'template_name|模板名称' => 'require',
|
|
'template_value|保障服务条款' => 'require|array',
|
|
'status|是否开启' => 'in:0,1',
|
|
];
|
|
}
|