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

com.centit.support.database.orm.Lazy Maven / Gradle / Ivy

Go to download

数据库操作通用方法和函数,从以前的util包中分离出来,并且整合了部分sys-module中的函数

There is a newer version: 5.3.2302
Show newest version
package com.centit.support.database.orm;

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

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

/**
 * Created by codefan on 17-8-30.
 */
@Target({METHOD, FIELD})
@Retention(RUNTIME)
public @interface Lazy {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy