RepairGroup.php 347 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. class RepairGroup extends Validate{
  5. protected $rule = [
  6. 'title|名称' => 'require|length:1,50',
  7. 'users|分组成员' => 'require',
  8. ];
  9. protected $message = [
  10. 'title.length' => '名称必须50字以内',
  11. ];
  12. protected $scene = [
  13. ];
  14. }