123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package org.jeecg.modules.system.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- import org.jeecg.common.aspect.annotation.Dict;
- import org.jeecgframework.poi.excel.annotation.Excel;
- import org.springframework.format.annotation.DateTimeFormat;
- /**
- * @Description: 多数据源管理
- * @Author: jeecg-boot
- * @Date: 2019-12-25
- * @Version: V1.0
- */
- @Data
- @TableName("sys_data_source")
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @ApiModel(value = "sys_data_source对象", description = "多数据源管理")
- public class SysDataSource {
- /**
- * id
- */
- @TableId(type = IdType.ASSIGN_ID)
- @ApiModelProperty(value = "id")
- private java.lang.String id;
- /**
- * 数据源编码
- */
- @Excel(name = "数据源编码", width = 15)
- @ApiModelProperty(value = "数据源编码")
- private java.lang.String code;
- /**
- * 数据源名称
- */
- @Excel(name = "数据源名称", width = 15)
- @ApiModelProperty(value = "数据源名称")
- private java.lang.String name;
- /**
- * 描述
- */
- @Excel(name = "备注", width = 15)
- @ApiModelProperty(value = "备注")
- private java.lang.String remark;
- /**
- * 数据库类型
- */
- @Dict(dicCode = "database_type")
- @Excel(name = "数据库类型", width = 15, dicCode = "database_type")
- @ApiModelProperty(value = "数据库类型")
- private java.lang.String dbType;
- /**
- * 驱动类
- */
- @Excel(name = "驱动类", width = 15)
- @ApiModelProperty(value = "驱动类")
- private java.lang.String dbDriver;
- /**
- * 数据源地址
- */
- @Excel(name = "数据源地址", width = 15)
- @ApiModelProperty(value = "数据源地址")
- private java.lang.String dbUrl;
- /**
- * 数据库名称
- */
- @Excel(name = "数据库名称", width = 15)
- @ApiModelProperty(value = "数据库名称")
- private java.lang.String dbName;
- /**
- * 用户名
- */
- @Excel(name = "用户名", width = 15)
- @ApiModelProperty(value = "用户名")
- private java.lang.String dbUsername;
- /**
- * 密码
- */
- @Excel(name = "密码", width = 15)
- @ApiModelProperty(value = "密码")
- private java.lang.String dbPassword;
- /**
- * 创建人
- */
- @ApiModelProperty(value = "创建人")
- private java.lang.String createBy;
- /**
- * 创建日期
- */
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @ApiModelProperty(value = "创建日期")
- private java.util.Date createTime;
- /**
- * 更新人
- */
- @ApiModelProperty(value = "更新人")
- private java.lang.String updateBy;
- /**
- * 更新日期
- */
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @ApiModelProperty(value = "更新日期")
- private java.util.Date updateTime;
- /**
- * 所属部门
- */
- @Excel(name = "所属部门", width = 15)
- @ApiModelProperty(value = "所属部门")
- private java.lang.String sysOrgCode;
- }
|