BroadcastGoodsValidate.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\validate\merchant;
  12. use think\Validate;
  13. class BroadcastGoodsValidate extends Validate
  14. {
  15. protected $failException = true;
  16. protected $rule = [
  17. 'name|商品名称' => 'require|min:3|max:14',
  18. 'cover_img|商品图' => 'require',
  19. 'price|价格' => 'require|min:0.01',
  20. 'product_id|商品' => 'require|array|length:2',
  21. ];
  22. public function isBatch()
  23. {
  24. $this->rule['product_id|商品'] = 'require|integer';
  25. return $this;
  26. }
  27. }