123456789101112131415161718192021222324252627282930313233 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\validate\api;
- use think\Validate;
- class StoreRefundOrderValidate extends Validate
- {
- protected $failException = true;
- protected $rule = [
- 'type|退款类型' => 'require|in:1,2',
- 'refund_type|退款方式' => 'require|in:1,2',
- 'num|商品件数' => 'requireIf:type,1|integer|>:0',
- 'ids|退款商品' => 'require',
- 'refund_message|退款原因' => 'require|max:128',
- 'mark|备注' => 'max:128',
- 'refund_price|退款金额' => 'require|float',
- 'pics|凭证' => 'array|max:9',
- ];
- }
|