package com.jsh.erp.service.organization;
|
|
import com.jsh.erp.service.ResourceInfo;
|
|
import java.lang.annotation.*;
|
|
/**
|
* Description
|
* 机构
|
* @Author: cjl
|
* @Date: 2019/3/6 15:10
|
*/
|
@ResourceInfo(value = "organization")
|
@Inherited
|
@Target(ElementType.TYPE)
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface OrganizationResource {
|
}
|