22 lines
376 B
PHP
22 lines
376 B
PHP
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\validate\admin;
|
|
|
|
|
|
use think\Validate;
|
|
|
|
class CommunityTopicValidate extends Validate
|
|
{
|
|
protected $failException = true;
|
|
|
|
protected $rule = [
|
|
'category_id|选择分类' => 'require|integer',
|
|
'topic_name|输入话题' => 'require|max:20',
|
|
'is_hot|推荐' => 'in:0,1',
|
|
'status|状态' => 'require|in:0,1',
|
|
];
|
|
}
|