LeaderShip.php 253 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\common\validate;
  3. use think\Db;
  4. use think\Validate;
  5. class LeaderShip extends Validate{
  6. protected $rule = [
  7. 'content|内容' => 'require',
  8. ];
  9. protected $message = [
  10. ];
  11. protected $scene = [
  12. ];
  13. }