2024-04-11 01:26:06 +00:00
|
|
|
package com.ruoyi.mybatis.annotation;
|
|
|
|
|
|
|
|
import java.lang.annotation.ElementType;
|
|
|
|
import java.lang.annotation.Retention;
|
|
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
import java.lang.annotation.Target;
|
|
|
|
|
2024-04-15 12:58:58 +00:00
|
|
|
/**
|
|
|
|
* 标注数据库字段
|
|
|
|
*
|
|
|
|
* @author Dftre
|
|
|
|
*/
|
2024-04-11 01:26:06 +00:00
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
@Target(ElementType.FIELD)
|
|
|
|
public @interface Column {
|
|
|
|
String name(); // 对应数据库字段名
|
|
|
|
boolean primaryKey() default false; // 是否是主键
|
|
|
|
}
|