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

com.gitee.qdbp.staticize.annotation.AttrRequired Maven / Gradle / Ivy

There is a newer version: 3.5.18
Show newest version
package com.gitee.qdbp.staticize.annotation;

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

/**
 * 属性必填标记注解
* 设置在Setter方法上面 * * @author zhaohuihua * @version 20200929 */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface AttrRequired { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy