首页>代码>基于SpringBoot+Vue校园失物招领系统的设计与实现>/源代码/xiaoyuanshiwu/src/main/java/com/annotation/ColumnInfo.java
package com.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface ColumnInfo { String comment(); String type(); }
