All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yqjr.framework.annotation.FrameworkWebService Maven / Gradle / Ivy

/**
 * 
 */
package com.yqjr.framework.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.springframework.stereotype.Service;

/**
 * ClassName: FrameworkWebService 
* Description: 框架webservice注解
* Create By: admin
* Create Date: 2017年5月16日 下午6:26:47
* Modified By:
* Modified Date:
* Modified Content:
* Version: 1.0
*/ @Target({ ElementType.TYPE }) @Retention(RetentionPolicy.RUNTIME) @Documented @Service public @interface FrameworkWebService { public String serviceName() default ""; public String nameSpace() default ""; public String url(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy