BackGoodsValidate.php 427 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\validate\api;
  3. use think\Validate;
  4. class BackGoodsValidate extends Validate
  5. {
  6. protected $failException = true;
  7. protected $rule = [
  8. 'delivery_type|快递公司' => 'require',
  9. 'delivery_id|快递单号' => 'require',
  10. 'delivery_phone|联系电话' => 'require|mobile',
  11. 'delivery_mark|备注' => 'max:128',
  12. 'delivery_pics|凭证' => 'array|max:9',
  13. ];
  14. }