You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package com.xkcoding.codegen.entity;
-
- import lombok.Data;
-
- /**
- * <p>
- * 生成配置
- * </p>
- *
- * @author yangkai.shen
- * @date Created in 2019-03-22 09:47
- */
- @Data
- public class GenConfig {
- /**
- * 请求参数
- */
- private TableRequest request;
- /**
- * 包名
- */
- private String packageName;
- /**
- * 作者
- */
- private String author;
- /**
- * 模块名称
- */
- private String moduleName;
- /**
- * 表前缀
- */
- private String tablePrefix;
- /**
- * 表名称
- */
- private String tableName;
- /**
- * 表备注
- */
- private String comments;
- }
|