VersionTest.java 562 Bytes
package com.shunzhi.parent.annotation;

import org.shunzhi.processorlibs.AddColumn;

/*
Error:groovy.lang.MissingMethodException: No signature of method:
java.io.File.plus() is applicable for argument types: (java.lang.String) values: [\app\src\main\assets\migrations]
 */

public class VersionTest {
    @AddColumn(version = 3, tableName = "test", type = "String")
    private String name;

    @AddColumn(version = 3, tableName = "test", type = "Integer")
    Integer age;
    @AddColumn(version = 3, tableName = "test", type = "Boolean")
    Boolean area;

}