14 lines
399 B
Java
14 lines
399 B
Java
![]() |
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;
|
||
|
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
@Target(ElementType.FIELD)
|
||
|
public @interface Column {
|
||
|
String name(); // 对应数据库字段名
|
||
|
boolean primaryKey() default false; // 是否是主键
|
||
|
}
|