| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- namespace App\Http\Requests\Manager\External;
- use App\Http\Requests\BaseRequest;
- /**
- * 采集配置-商品信息验证
- * @author 唐远望
- * @version 1.0
- * @date 2026-02-02
- *
- */
- class Company extends BaseRequest
- {
- /**
- * 获取应用于请求的规则
- *
- * @return array
- */
- public function rules()
- {
- // 返回结果
- return [
- 'name' => 'required',
- 'id' => 'required|integer|gt:0',
- 'status' => 'required|integer|in:0,1',
- 'page' => 'integer|min:1',
- 'limit' => 'integer|min:1',
- 'sort' => 'required|integer|min:0',
- 'company_name' => 'required',
- 'social_credit_code' => 'required',
- ];
- }
- // 场景列表
- protected $scenes = [
- 'detail' => ['id'],
- 'all' => [],
- 'list' => ['page', 'limit'],
- 'add' => ['company_name','social_credit_code'],
- 'edit' => ['id','company_name','social_credit_code'],
- 'set_status' => ['id', 'status'],
- 'delete' => ['id'],
- ];
- /**
- * 获取已定义验证规则的错误消息
- *
- * @return array
- */
- public function messages()
- {
- return [
- 'name.required' => '名称必填',
- 'id.required' => 'ID未知',
- 'id.integer' => 'ID格式错误',
- 'id.gt' => 'ID格式错误',
- 'status.required' => '状态未知',
- 'status.integer' => '状态格式错误',
- 'status.in' => '状态格式错误',
- 'page.integer' => '页码格式错误',
- 'page.min' => '页码格式错误',
- 'limit.integer' => '每页数量格式错误',
- 'limit.min' => '每页数量格式错误',
- 'company_name.required' => '公司名称必填',
- 'social_credit_code.required' => '社会信用代码必填',
- ];
- }
- }
|