| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace app\v1\validate\advert;
- use think\Validate;
- /**
- * 广告媒体表验证器
- */
- class MediaListValidate extends Validate
- {
- /**
- * 定义验证规则
- */
- protected $rule = [
- 'name' => 'require',
- 'channel_name' => 'require',
- 'state' => 'require',
- ];
- /**
- * 定义错误信息
- */
- protected $message = [
- 'name' => '媒体名称必须填写',
- 'channel_name' => '媒体渠道简称必须填写',
- 'state' => '状态必须填写',
- ];
- /**
- * 定义场景
- */
- protected $scene = [
- 'save' => [
- 'name',
- 'channel_name',
- 'andurl',
- 'iosurl',
- 'xyxurl',
- 'appleturl',
- 'state',
- ],
- 'update' => [
- 'name',
- 'channel_name',
- 'andurl',
- 'iosurl',
- 'xyxurl',
- 'appleturl',
- 'state',
- ],
- ];
- }
|