com.zys.mybatis.annotation.EnableSetOtherField Maven / Gradle / Ivy
package com.zys.mybatis.annotation;
import java.lang.annotation.*;
/**
* 开启字段赋值
* @author zys
* @version 1.0
* @date 2021/04/24 11:46
*/
@Target(value = ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface EnableSetOtherField {
/**
* 需要开启的字段名称
* @return 需要开启的字段名称
*/
String[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy