34 lines
620 B
PHP
34 lines
620 B
PHP
<?php
|
|
|
|
namespace app\admin\validate\party;
|
|
|
|
use think\Validate;
|
|
|
|
class VoteComment extends Validate
|
|
{
|
|
/**
|
|
* 验证规则
|
|
*/
|
|
protected $rule = [
|
|
'vote_id' => 'require',
|
|
'content' => 'require',
|
|
'type' => 'require',
|
|
];
|
|
/**
|
|
* 提示消息
|
|
*/
|
|
protected $message = [
|
|
'vote_id' => '没有内容id',
|
|
'content' => '请填写内容',
|
|
'type' => '没有type字段',
|
|
];
|
|
/**
|
|
* 验证场景
|
|
*/
|
|
protected $scene = [
|
|
'add' => ['vote_id','content','type'],
|
|
'edit' => ['vote_id','content','type'],
|
|
];
|
|
|
|
}
|