项目初始导入
This commit is contained in:
32
src/main/java/com/nis/supcan/SupExpress.java
Normal file
32
src/main/java/com/nis/supcan/SupExpress.java
Normal file
@@ -0,0 +1,32 @@
|
||||
/**
|
||||
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
|
||||
*/
|
||||
package com.nis.supcan;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Inherited;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* 硕正Express注解
|
||||
* @author WangZhen
|
||||
* @version 2013-11-12
|
||||
*/
|
||||
@Target({ ElementType.ANNOTATION_TYPE })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Inherited
|
||||
public @interface SupExpress {
|
||||
|
||||
/**
|
||||
* 是否自动按列的引用关系优化计算顺序 默认值true
|
||||
*/
|
||||
String isOpt() default "";
|
||||
|
||||
/**
|
||||
* 文本
|
||||
*/
|
||||
String text() default "";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user