| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace app\admin\validate;
- class ComplaintValidate extends BaseValidate
- {
- /**
- * 设置校验规则
- * @var string[]
- */
- protected $rule = [
- 'id' => 'require',
- 'name' => 'require|min:1',
- 'weight' => 'require|integer|min:0',
- ];
- /**
- * 参数描述
- * @var string[]
- */
- protected $field = [
- 'id' => 'id',
- 'name' => '投诉项',
- 'weight' => '权重',
- ];
- /**
- * @notes 编辑场景
- */
- public function sceneEdit()
- {
- return $this->only(['name', 'weight', 'language_code']);
- }
- public function sceneId()
- {
- return $this->only(['id']);
- }
- }
|