
tk.mybatis.mapper.annotation.LogicDelete Maven / Gradle / Ivy
package tk.mybatis.mapper.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 逻辑删除
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface LogicDelete {
int isDeletedValue() default 1;
int notDeletedValue() default 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy