You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wkcrm/application/oa/validate/OaAnnouncement.php

21 lines
396 B

4 years ago
<?php
namespace app\oa\validate;
use think\Validate;
/**
* 设置模型
*/
class OaAnnouncement extends Validate{
protected $rule = [
'title' => 'require',
'content' => 'require|number',
];
protected $message = [
'title.require' => '公告标题必须填写',
'content.require' => '公告内容必须填写',
];
protected $scene = [
'edit' => [],
];
}