'string|max:20', 'id' => 'required|integer|gt:0', 'active_id' => 'required|integer|gt:0', ]; } // 场景列表 protected $scenes = [ 'get_list' => ['active_id'], ]; /** * 获取已定义验证规则的错误消息 * * @return array */ public function messages() { return [ 'active_id.required' => '请选择活动ID', 'active_id.integer' => '活动ID有误', 'active_id.gt' => '活动ID有误', 'id.required' => '请选择奖品记录', 'id.integer' => '奖品记录ID有误', 'id.gt' => '奖品记录ID有误', ]; } }