jinlin
2024-01-23 52a302b11c08cbc564ff3931038ae57a305a95d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
 * 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;
 
}