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

import org.shunzhi.processorlibs.AddColumn;

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

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

}