Files
influxdb-springboot-starter/src/main/java/com/njcn/influx/ano/Select.java

26 lines
458 B
Java
Raw Normal View History

2023-04-21 13:23:33 +08:00
package com.njcn.influx.ano;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 查询记录
* @author hongawen
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Select {
/***
* 查询sql
*/
String value();
/***
* 返回映射的实体对象
*/
Class resultType();
}