'string|max:20', 'id' => 'required|integer|gt:0', 'product_id' => 'required|integer|gt:0', 'buy_num' => 'required|integer|gt:0', 'addr_id' => 'required|integer|gt:0', ]; } // 场景列表 protected $scenes = [ 'get_list' => [], 'create' => ['product_id','buy_num','addr_id'], ]; /** * 获取已定义验证规则的错误消息 * * @return array */ public function messages() { return [ 'product_id.required' => '请选择需兑换产品', 'product_id.integer' => '产品ID有误', 'product_id.gt' => '产品ID有误', 'buy_num.required' => '兑换数量必填', 'buy_num.integer' => '数量有误', 'buy_num.gt' => '数量有误', 'addr_id.required' => '请选择收货地址', ]; } }