/**
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
*
|
* https://www.renren.io
|
*
|
* 版权所有,侵权必究!
|
*/
|
|
package com.zt.common.annotation;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* 查询封装
|
*
|
* @author hehz
|
*/
|
@Target(ElementType.PARAMETER)
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface QueryParam {
|
|
}
|