/**
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
*
|
* https://www.renren.io
|
*
|
* 版权所有,侵权必究!
|
*/
|
|
package com.zt.generator.model;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 代码生成管理
|
*
|
* @author hehz
|
* @since 1.0.0
|
*/
|
@Data
|
@ApiModel(value = "代码生成管理")
|
public class Config implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
@ApiModelProperty(value = "实体对象名称")
|
private String tableName;
|
|
@ApiModelProperty(value = "实体对象名称")
|
private String className;
|
|
@ApiModelProperty(value = "是否生成service", required = true)
|
private String checked;
|
|
@ApiModelProperty(value = "java代码生成路径")
|
private String javaFilePath;
|
|
@ApiModelProperty(value = "vue代码生成路径", required = true)
|
private String vueFilePath;
|
|
@ApiModelProperty(value = "表格信息")
|
private String tableData;
|
|
@ApiModelProperty(value = "包名")
|
private String packName;
|
|
@ApiModelProperty(value = "是否生成页面")
|
private String isPageFlag;
|
|
@ApiModelProperty(value = "是否需要导出功能")
|
private String isExport;
|
|
}
|