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

com.kould.annotation.DaoSelect Maven / Gradle / Ivy

package com.kould.annotation;

import com.kould.entity.Status;

import java.lang.annotation.*;

@Inherited
@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface DaoSelect {
    //默认使用全删策略
    Status status() default Status.BY_FIELD;
    Class[] involve() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy