Digital Office Automation System Backend
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.

DataPermission.java 298B

2 月之前
123456789101112131415161718
  1. package com.ruoyi.common.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * 数据权限组
  5. *
  6. * @author Lion Li
  7. * @version 3.5.0
  8. */
  9. @Target({ElementType.METHOD, ElementType.TYPE})
  10. @Retention(RetentionPolicy.RUNTIME)
  11. @Documented
  12. public @interface DataPermission {
  13. DataColumn[] value();
  14. }