最佳答案
下面是注释代码
public @interface ColumnName {
String value();
String datatype();
}
例如,我希望使 datatype
成为一个可选参数
@ColumnName(value="password")
应该是一个有效的代码。