You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
551 B

7 years ago
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. class Sysconfig extends Validate
  5. {
  6. // 验证规则
  7. protected $rule = [
  8. ['id', 'require|number','ID必填|ID必须是数字'],
  9. ['varname', 'require|max:100','变量名必填|变量名不能超过100个字符'],
  10. ['info', 'require|max:100','变量值必填|变量值不能超过100个字符'],
  11. ['value', 'require', '变量说明必填'],
  12. ];
  13. protected $scene = [
  14. 'add' => ['varname', 'info', 'value'],
  15. 'del' => ['id'],
  16. ];
  17. }