Cost.php 653 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 商品分类
  7. */
  8. namespace app\bestbao\validate;
  9. use think\Validate;
  10. class Cost extends Validate{
  11. protected $rule = [
  12. 'member_miniapp_id' => 'require|number',
  13. 'type' => 'require|number',
  14. ];
  15. protected $message = [
  16. 'member_miniapp_id' => '应用丢失',
  17. 'type' => '应用类型必须选择',
  18. ];
  19. protected $scene = [
  20. 'save' => ['member_miniapp_id', 'type']
  21. ];
  22. }