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.

21 lines
706 B

7 years ago
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. class Region extends Validate
  5. {
  6. // 验证规则
  7. protected $rule = [
  8. ['id', 'require|number','ID必填|ID必须是数字'],
  9. ['parent_id', 'number','父级ID必须是数字'],
  10. ['name', 'require|max:64','名称必填|名称不能超过64个字符'],
  11. ['type', 'in:0,1,2,3','层级,0国家,1省,2市,3区'],
  12. ['sort_name', 'max:50','拼音或英文简写不能超过50个字符'],
  13. ['area_code', 'max:10', '电话区号不能超过10个字符'],
  14. ];
  15. protected $scene = [
  16. 'add' => ['name', 'parent_id', 'type', 'sort_name', 'area_code'],
  17. 'del' => ['id'],
  18. ];
  19. }