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

com.jeesuite.mybatis.plugin.datalog.annotation.DataChangeLogeable Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.jeesuite.mybatis.plugin.datalog.annotation;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

import com.jeesuite.mybatis.core.BaseEntity;

/**
 * 数据变更日志注解
 * 
* Class Name : DataChangeLogeable * * @author jiangwei * @version 1.0.0 * @date 2019年10月26日 */ @Retention(RUNTIME) @Target(METHOD) public @interface DataChangeLogeable { Class[] entityClass(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy