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/OaEvent.php

19 lines
301 B

<?php
namespace app\oa\validate;
use think\Validate;
/**
* 设置模型
*/
class OaEvent extends Validate{
protected $rule = [
'title' => 'require',
];
protected $message = [
'title.require' => '日程标题必须填写',
];
protected $scene = [
'edit' => [],
];
}