60 lines
1.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* +----------------------------------------------------------------------
* | CRMEB [ CRMEB赋能开发者助力企业发展 ]
* +----------------------------------------------------------------------
* | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
* +----------------------------------------------------------------------
* | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
* +----------------------------------------------------------------------
* | Author: CRMEB Team <admin@crmeb.com>
* +----------------------------------------------------------------------
*/
/**
* 公司历程
* @author crud自动生成代码
* @date 2025/02/21 10:00:25
*/
namespace app\adminapi\validate\crud;
use think\Validate;
/**
* Class CrudValidate
* @date 2025/02/21
* @package app\adminapi\validate\crud
*/
class ProcessValidate extends Validate
{
/**
* @var array
*/
protected $rule = [
'title'=> 'require',
'subtitle'=> 'require',
'set_time'=> 'require',
'content'=> 'require',
];
/**
* @var array
*/
protected $message = [
'title.require'=> '标题必须填写',
'subtitle.require'=> '副标题必须填写',
'set_time.require'=> '发生时间必须填写',
'content.require'=> '发生的事件必须填写',
];
/**
* @var array
*/
protected $scene = [
];
}