|
|
|
@ -1,6 +1,7 @@
@@ -1,6 +1,7 @@
|
|
|
|
|
package com.cloud.kicc.system.api.devtools.entity; |
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
|
import com.cloud.kicc.common.data.entity.BaseEntity; |
|
|
|
|
import com.cloud.kicc.common.data.entity.CommonEntity; |
|
|
|
|
import java.io.Serializable; |
|
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
@ -24,7 +25,7 @@ import lombok.experimental.Accessors;
@@ -24,7 +25,7 @@ import lombok.experimental.Accessors;
|
|
|
|
|
@Accessors(chain = true) |
|
|
|
|
@TableName("sys_gen_database_type") |
|
|
|
|
@ApiModel(value = "GenDatabaseType对象", description = "数据库类型") |
|
|
|
|
public class GenDatabaseType extends CommonEntity { |
|
|
|
|
public class GenDatabaseType extends BaseEntity { |
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
|
@ -33,6 +34,6 @@ public class GenDatabaseType extends CommonEntity {
@@ -33,6 +34,6 @@ public class GenDatabaseType extends CommonEntity {
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("数据库类型") |
|
|
|
|
private String type; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|