parent
0fc1d68d85
commit
83d5672603
12 changed files with 521 additions and 33 deletions
@ -0,0 +1,18 @@ |
|||||||
|
package org.jeecg.modules.tablex.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import org.apache.ibatis.annotations.Update; |
||||||
|
import org.jeecg.modules.tablex.entity.Tablex; |
||||||
|
import org.jeecg.modules.tablex.vo.TablexVo; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Description: 实体表 |
||||||
|
* @Author: jeecg-boot |
||||||
|
* @Date: 2023-04-10 |
||||||
|
* @Version: V1.0 |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface TablexVoMapper extends BaseMapper<TablexVo> { |
||||||
|
|
||||||
|
} |
@ -1,5 +1,5 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||||
<mapper namespace=".tablex.mapper.TablexMapper"> |
<mapper namespace="org.jeecg.modules.tablex.mapper.TablexMapper"> |
||||||
|
|
||||||
</mapper> |
</mapper> |
@ -0,0 +1,5 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||||
|
<mapper namespace="org.jeecg.modules.tablex.mapper.TablexVoMapper"> |
||||||
|
|
||||||
|
</mapper> |
@ -0,0 +1,15 @@ |
|||||||
|
package org.jeecg.modules.tablex.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.IService; |
||||||
|
import org.jeecg.modules.tablex.entity.Tablex; |
||||||
|
import org.jeecg.modules.tablex.vo.TablexVo; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Description: 实体表 |
||||||
|
* @Author: jeecg-boot |
||||||
|
* @Date: 2023-04-10 |
||||||
|
* @Version: V1.0 |
||||||
|
*/ |
||||||
|
public interface ITablexVoService extends IService<TablexVo> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,22 @@ |
|||||||
|
package org.jeecg.modules.tablex.service.impl; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import org.jeecg.modules.tablex.entity.Tablex; |
||||||
|
import org.jeecg.modules.tablex.mapper.TablexMapper; |
||||||
|
import org.jeecg.modules.tablex.mapper.TablexVoMapper; |
||||||
|
import org.jeecg.modules.tablex.service.ITablexService; |
||||||
|
import org.jeecg.modules.tablex.service.ITablexVoService; |
||||||
|
import org.jeecg.modules.tablex.vo.TablexVo; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Description: 实体表 |
||||||
|
* @Author: jeecg-boot |
||||||
|
* @Date: 2023-04-10 |
||||||
|
* @Version: V1.0 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
public class TablexVoServiceImpl extends ServiceImpl<TablexVoMapper, TablexVo> implements ITablexVoService { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,331 @@ |
|||||||
|
package org.jeecg.modules.tablex.vo; |
||||||
|
|
||||||
|
import org.jeecg.modules.tablex.entity.Tablex; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* @TableName tablex_vo |
||||||
|
*/ |
||||||
|
public class TablexVo extends Tablex implements Serializable { |
||||||
|
/** |
||||||
|
* |
||||||
|
*/ |
||||||
|
private String id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 对应模块id |
||||||
|
*/ |
||||||
|
private String moduleId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 中文名称 |
||||||
|
*/ |
||||||
|
private String tableName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 英文名称 |
||||||
|
*/ |
||||||
|
private String tableEnName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 表结构SQL |
||||||
|
*/ |
||||||
|
private String tableStructure; |
||||||
|
|
||||||
|
/** |
||||||
|
* 结构图 |
||||||
|
*/ |
||||||
|
private String structuralDiagram; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建人 |
||||||
|
*/ |
||||||
|
private String createBy; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
private String createTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改人 |
||||||
|
*/ |
||||||
|
private String updateBy; |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改时间 |
||||||
|
*/ |
||||||
|
private String updateTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 实体状态 |
||||||
|
*/ |
||||||
|
private String status; |
||||||
|
|
||||||
|
/** |
||||||
|
* 版本状态 |
||||||
|
*/ |
||||||
|
private String verisonStatus; |
||||||
|
|
||||||
|
/** |
||||||
|
* 版本号 |
||||||
|
*/ |
||||||
|
private String verison; |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
*/ |
||||||
|
public String getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
*/ |
||||||
|
public void setId(String id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 对应模块id |
||||||
|
*/ |
||||||
|
public String getModuleId() { |
||||||
|
return moduleId; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 对应模块id |
||||||
|
*/ |
||||||
|
public void setModuleId(String moduleId) { |
||||||
|
this.moduleId = moduleId; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 中文名称 |
||||||
|
*/ |
||||||
|
public String getTableName() { |
||||||
|
return tableName; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 中文名称 |
||||||
|
*/ |
||||||
|
public void setTableName(String tableName) { |
||||||
|
this.tableName = tableName; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 英文名称 |
||||||
|
*/ |
||||||
|
public String getTableEnName() { |
||||||
|
return tableEnName; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 英文名称 |
||||||
|
*/ |
||||||
|
public void setTableEnName(String tableEnName) { |
||||||
|
this.tableEnName = tableEnName; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 表结构SQL |
||||||
|
*/ |
||||||
|
public String getTableStructure() { |
||||||
|
return tableStructure; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 表结构SQL |
||||||
|
*/ |
||||||
|
public void setTableStructure(String tableStructure) { |
||||||
|
this.tableStructure = tableStructure; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 结构图 |
||||||
|
*/ |
||||||
|
public String getStructuralDiagram() { |
||||||
|
return structuralDiagram; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 结构图 |
||||||
|
*/ |
||||||
|
public void setStructuralDiagram(String structuralDiagram) { |
||||||
|
this.structuralDiagram = structuralDiagram; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建人 |
||||||
|
*/ |
||||||
|
public String getCreateBy() { |
||||||
|
return createBy; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建人 |
||||||
|
*/ |
||||||
|
public void setCreateBy(String createBy) { |
||||||
|
this.createBy = createBy; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
public String getCreateTime() { |
||||||
|
return createTime; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
public void setCreateTime(String createTime) { |
||||||
|
this.createTime = createTime; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改人 |
||||||
|
*/ |
||||||
|
public String getUpdateBy() { |
||||||
|
return updateBy; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改人 |
||||||
|
*/ |
||||||
|
public void setUpdateBy(String updateBy) { |
||||||
|
this.updateBy = updateBy; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改时间 |
||||||
|
*/ |
||||||
|
public String getUpdateTime() { |
||||||
|
return updateTime; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改时间 |
||||||
|
*/ |
||||||
|
public void setUpdateTime(String updateTime) { |
||||||
|
this.updateTime = updateTime; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 实体状态 |
||||||
|
*/ |
||||||
|
public String getStatus() { |
||||||
|
return status; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 实体状态 |
||||||
|
*/ |
||||||
|
public void setStatus(String status) { |
||||||
|
this.status = status; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 版本状态 |
||||||
|
*/ |
||||||
|
public String getVerisonStatus() { |
||||||
|
return verisonStatus; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 版本状态 |
||||||
|
*/ |
||||||
|
public void setVerisonStatus(String verisonStatus) { |
||||||
|
this.verisonStatus = verisonStatus; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 版本号 |
||||||
|
*/ |
||||||
|
public String getVerison() { |
||||||
|
return verison; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 版本号 |
||||||
|
*/ |
||||||
|
public void setVerison(String verison) { |
||||||
|
this.verison = verison; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public boolean equals(Object that) { |
||||||
|
if (this == that) { |
||||||
|
return true; |
||||||
|
} |
||||||
|
if (that == null) { |
||||||
|
return false; |
||||||
|
} |
||||||
|
if (getClass() != that.getClass()) { |
||||||
|
return false; |
||||||
|
} |
||||||
|
TablexVo other = (TablexVo) that; |
||||||
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||||
|
&& (this.getModuleId() == null ? other.getModuleId() == null : this.getModuleId().equals(other.getModuleId())) |
||||||
|
&& (this.getTableName() == null ? other.getTableName() == null : this.getTableName().equals(other.getTableName())) |
||||||
|
&& (this.getTableEnName() == null ? other.getTableEnName() == null : this.getTableEnName().equals(other.getTableEnName())) |
||||||
|
&& (this.getTableStructure() == null ? other.getTableStructure() == null : this.getTableStructure().equals(other.getTableStructure())) |
||||||
|
&& (this.getStructuralDiagram() == null ? other.getStructuralDiagram() == null : this.getStructuralDiagram().equals(other.getStructuralDiagram())) |
||||||
|
&& (this.getCreateBy() == null ? other.getCreateBy() == null : this.getCreateBy().equals(other.getCreateBy())) |
||||||
|
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) |
||||||
|
&& (this.getUpdateBy() == null ? other.getUpdateBy() == null : this.getUpdateBy().equals(other.getUpdateBy())) |
||||||
|
&& (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime())) |
||||||
|
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) |
||||||
|
&& (this.getVerisonStatus() == null ? other.getVerisonStatus() == null : this.getVerisonStatus().equals(other.getVerisonStatus())) |
||||||
|
&& (this.getVerison() == null ? other.getVerison() == null : this.getVerison().equals(other.getVerison())); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public int hashCode() { |
||||||
|
final int prime = 31; |
||||||
|
int result = 1; |
||||||
|
result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); |
||||||
|
result = prime * result + ((getModuleId() == null) ? 0 : getModuleId().hashCode()); |
||||||
|
result = prime * result + ((getTableName() == null) ? 0 : getTableName().hashCode()); |
||||||
|
result = prime * result + ((getTableEnName() == null) ? 0 : getTableEnName().hashCode()); |
||||||
|
result = prime * result + ((getTableStructure() == null) ? 0 : getTableStructure().hashCode()); |
||||||
|
result = prime * result + ((getStructuralDiagram() == null) ? 0 : getStructuralDiagram().hashCode()); |
||||||
|
result = prime * result + ((getCreateBy() == null) ? 0 : getCreateBy().hashCode()); |
||||||
|
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); |
||||||
|
result = prime * result + ((getUpdateBy() == null) ? 0 : getUpdateBy().hashCode()); |
||||||
|
result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); |
||||||
|
result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); |
||||||
|
result = prime * result + ((getVerisonStatus() == null) ? 0 : getVerisonStatus().hashCode()); |
||||||
|
result = prime * result + ((getVerison() == null) ? 0 : getVerison().hashCode()); |
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String toString() { |
||||||
|
StringBuilder sb = new StringBuilder(); |
||||||
|
sb.append(getClass().getSimpleName()); |
||||||
|
sb.append(" ["); |
||||||
|
sb.append("Hash = ").append(hashCode()); |
||||||
|
sb.append(", id=").append(id); |
||||||
|
sb.append(", moduleId=").append(moduleId); |
||||||
|
sb.append(", tableName=").append(tableName); |
||||||
|
sb.append(", tableEnName=").append(tableEnName); |
||||||
|
sb.append(", tableStructure=").append(tableStructure); |
||||||
|
sb.append(", structuralDiagram=").append(structuralDiagram); |
||||||
|
sb.append(", createBy=").append(createBy); |
||||||
|
sb.append(", createTime=").append(createTime); |
||||||
|
sb.append(", updateBy=").append(updateBy); |
||||||
|
sb.append(", updateTime=").append(updateTime); |
||||||
|
sb.append(", status=").append(status); |
||||||
|
sb.append(", verisonStatus=").append(verisonStatus); |
||||||
|
sb.append(", verison=").append(verison); |
||||||
|
sb.append(", serialVersionUID=").append(serialVersionUID); |
||||||
|
sb.append("]"); |
||||||
|
return sb.toString(); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue