com.mars.jdbc.core.annotation.MarsGet Maven / Gradle / Ivy
package com.mars.jdbc.core.annotation;
import java.lang.annotation.*;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface MarsGet {
/**
* 表名
* @return
*/
String tableName();
/**
* 主键名称
* @return
*/
String primaryKey();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy