RuoYi
2021-01-05 c633d4b63bb6ea372afd7f977c1107a34d2ad40a
src/main/java/com/ruoyi/project/tool/gen/domain/GenTable.java
@@ -55,6 +55,12 @@
    @NotBlank(message = "作者不能为空")
    private String functionAuthor;
    /** 生成代码方式(0zip压缩包 1自定义路径) */
    private String genType;
    /** 生成路径(不填默认项目路径) */
    private String genPath;
    /** 主键信息 */
    private GenTableColumn pkColumn;
@@ -180,6 +186,26 @@
        this.functionAuthor = functionAuthor;
    }
    public String getGenType()
    {
        return genType;
    }
    public void setGenType(String genType)
    {
        this.genType = genType;
    }
    public String getGenPath()
    {
        return genPath;
    }
    public void setGenPath(String genPath)
    {
        this.genPath = genPath;
    }
    public GenTableColumn getPkColumn()
    {
        return pkColumn;