![JAR search and dependency download from the Maven repository](/logo.png)
com.quhaodian.data.annotations.FormFiledAnnotation Maven / Gradle / Ivy
package com.quhaodian.data.annotations;
import java.lang.annotation.*;
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface FormFiledAnnotation {
boolean ignore() default false;
String title() default "";
/**
* 排序号
*
* @return
*/
String sortNum() default "0";
/**
* 输入框类型
*
* @return
*/
InputType type() default InputType.text;
/**
* css类名
*
* @return
*/
String className() default "form-control";
/**
* 数据框id
*
* @return
*/
String id() default "";
/**
* 输入框提示信息
*
* @return
*/
String placeholder() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy