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

import org.shunzhi.processorlibs.AddColumn;

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;

}