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
513 B

7 years ago
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. class Feedback extends Validate
  5. {
  6. // 验证规则
  7. protected $rule = [
  8. ['id', 'require|number','ID必填|ID必须是数字'],
  9. ['content', 'require','意见反馈内容必填'],
  10. ['title', 'max:150','标题必填|标题不能超过150个字符'],
  11. ['user_id', 'number', '用户ID必须是数字'],
  12. ];
  13. protected $scene = [
  14. 'add' => ['content', 'title', 'user_id'],
  15. 'del' => ['id'],
  16. ];
  17. }