0
0

Service.php 179 B

1234567891011121314
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. class Service extends Validate{
  5. protected $rule = [
  6. 'title|名称' => 'require|length:1,30',
  7. ];
  8. }