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

com.github.yiuman.citrus.support.widget.Selects Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
package com.github.yiuman.citrus.support.widget;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * 用于定义选择器
 *
 * @author yiuman
 * @date 2020/5/7
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface Selects {

    boolean multiple() default false;

    String bind();

    String key();

    String text() default "";

    String label() default "";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy