
jp.co.future.uroborosql.mapping.annotations.Column Maven / Gradle / Ivy
/**
* Copyright (c) 2017-present, Future Corporation
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
package jp.co.future.uroborosql.mapping.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* エンティティ カラム情報アノテーション
*
* @author ota
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Column {
/**
* カラム名
*
* @return カラム名
*/
String name() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy