全局格式化代码

This commit is contained in:
wangliwen 2022-09-29 17:51:37 +08:00
parent dc7821387c
commit ea141edbfa
708 changed files with 25534 additions and 23812 deletions

View File

@ -2,7 +2,8 @@
### 关于数据库或orm ### 关于数据库或orm
- 数据库版本管理工具使用flyway请将文件resource目录下对应位置文件名称使用 R__XXX 或 Vn.n__XXX R开头文件表明该文件为可重复执行sql当文件内容更改时该sql文件会在启动时再次执行一次即该文件无版本执行限制常用于数据初始化或数据迁移V开头的文件为版本约束文件常用于数据库表DDL操作使用场景一般为创表、加字段、加索引等ddl操作文件一旦被执行过不会再次重复执行 - 数据库版本管理工具使用flyway请将文件resource目录下对应位置文件名称使用 R__XXX 或 Vn.n__XXX
R开头文件表明该文件为可重复执行sql当文件内容更改时该sql文件会在启动时再次执行一次即该文件无版本执行限制常用于数据初始化或数据迁移V开头的文件为版本约束文件常用于数据库表DDL操作使用场景一般为创表、加字段、加索引等ddl操作文件一旦被执行过不会再次重复执行
- 使用flyway管理的ddl语句对表的操作语句不要指定SchemaDatabase防止在不同地区部署的数据库名称不一致导致执行异常 - 使用flyway管理的ddl语句对表的操作语句不要指定SchemaDatabase防止在不同地区部署的数据库名称不一致导致执行异常
- 使用flyway管理的ddl语句增加表的字段时不要指定新增字段位于已有字段后;防止表内不存在指定表字段导致ddl失败 - 使用flyway管理的ddl语句增加表的字段时不要指定新增字段位于已有字段后;防止表内不存在指定表字段导致ddl失败

View File

@ -11,12 +11,8 @@
7. 更新底部栏;支持通过读取配置文件,更改底部栏信息。 7. 更新底部栏;支持通过读取配置文件,更改底部栏信息。
8. 更新单点登录配置;支持通过配置关闭单点登录功能。 8. 更新单点登录配置;支持通过配置关闭单点登录功能。
------------------ ------------------
- v0.8.0.1 - v0.8.0.1
更新内容: 更新内容:
@ -24,14 +20,8 @@
1. 修复登录白屏问题 1. 修复登录白屏问题
2. 修复平台弱口令问题 2. 修复平台弱口令问题
--------------- ---------------
- v0.8.1.dev - v0.8.1.dev
更新内容: 更新内容:
@ -46,12 +36,8 @@
8. 更新赋能案例,新增后台赋能案例增删改查,门户读取后台管理中的相关模块数据。 8. 更新赋能案例,新增后台赋能案例增删改查,门户读取后台管理中的相关模块数据。
9. 更新申购车模块 9. 更新申购车模块
----------------- -----------------
- v0.8.1.1.release(本地测试环境测试) - v0.8.1.1.release(本地测试环境测试)
更新内容: 更新内容:
@ -68,21 +54,13 @@
-------------------- --------------------
- v0.8.1.2.release西海岸部署修复 - v0.8.1.2.release西海岸部署修复
1. 修复本地测试P1、P2问题 1. 修复本地测试P1、P2问题
2. 修复云图调用市局接口的问题 2. 修复云图调用市局接口的问题
--------------- ---------------
- v0.8.1.3.release市局部署修复 - v0.8.1.3.release市局部署修复
1. 修复市局接口报错问题 1. 修复市局接口报错问题
@ -90,20 +68,10 @@
3. 修复审核流程字段验证bug 3. 修复审核流程字段验证bug
4. 其他旧数据格式导致的展示类问题 4. 其他旧数据格式导致的展示类问题
------------ ------------
## 后续内容 ## 后续内容
- v0.8.1.4 - v0.8.1.4
1. 新增数据资源对接 1. 新增数据资源对接
@ -116,12 +84,8 @@
8. 更新赋能案例,新增后台赋能案例增删改查,门户读取后台管理中的相关模块数据。 8. 更新赋能案例,新增后台赋能案例增删改查,门户读取后台管理中的相关模块数据。
9. 更新申购车模块 9. 更新申购车模块
------------------- -------------------
- v0.8.2.dev - v0.8.2.dev
更新内容: 更新内容:
@ -130,20 +94,4 @@
2. 新增后台能力统计 2. 新增后台能力统计
|| 新增、修改、删除、解决的重点bug || 新增、修改、删除、解决的重点bug

View File

@ -10,7 +10,6 @@ import springfox.documentation.swagger2.annotations.EnableSwagger2;
/** /**
* renren-admin * renren-admin
*
*/ */
@SpringBootApplication(exclude = { @SpringBootApplication(exclude = {
org.activiti.spring.boot.SecurityAutoConfiguration.class, org.activiti.spring.boot.SecurityAutoConfiguration.class,

View File

@ -4,7 +4,6 @@ import java.lang.annotation.*;
/** /**
* 数据过滤注解 * 数据过滤注解
*
*/ */
@Target(ElementType.METHOD) @Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)

View File

@ -1,14 +1,9 @@
package io.renren.common.annotation; package io.renren.common.annotation;
import java.lang.annotation.Documented; import java.lang.annotation.*;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/** /**
* 操作日志注解 * 操作日志注解
*
*/ */
@Target(ElementType.METHOD) @Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)

View File

@ -22,7 +22,6 @@ import java.util.Map;
/** /**
* 数据过滤切面处理类 * 数据过滤切面处理类
*
*/ */
@Aspect @Aspect
@Component @Component

View File

@ -23,7 +23,6 @@ import java.lang.reflect.Method;
/** /**
* 操作日志切面处理类 * 操作日志切面处理类
*
*/ */
@Aspect @Aspect
@Component @Component

View File

@ -2,18 +2,12 @@ package io.renren.common.config;
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;
import org.springframework.http.HttpHeaders; import org.springframework.http.client.ClientHttpRequestFactory;
import org.springframework.http.HttpRequest; import org.springframework.http.client.SimpleClientHttpRequestFactory;
import org.springframework.http.client.*;
import org.springframework.http.converter.StringHttpMessageConverter; import org.springframework.http.converter.StringHttpMessageConverter;
import org.springframework.web.client.RestTemplate; import org.springframework.web.client.RestTemplate;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.net.SocketAddress;
import java.nio.charset.Charset; import java.nio.charset.Charset;
import java.util.Collections;
@Configuration @Configuration
public class RestTemplateConfig { public class RestTemplateConfig {

View File

@ -19,7 +19,6 @@ import static com.google.common.collect.Lists.newArrayList;
/** /**
* Swagger配置 * Swagger配置
*
*/ */
@Configuration @Configuration
@EnableSwagger2 @EnableSwagger2

View File

@ -7,7 +7,6 @@ import org.springframework.context.annotation.Configuration;
/** /**
* Swagger配置 * Swagger配置
*
*/ */
@Configuration @Configuration
public class TomcatConfig { public class TomcatConfig {

View File

@ -28,7 +28,10 @@ import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import java.util.*; import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CompletableFuture; import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutorService; import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors; import java.util.concurrent.Executors;

View File

@ -58,7 +58,6 @@ public class CensusController {
private String[] censusApplyTypes; // 需要进行申请统计的资源类型 private String[] censusApplyTypes; // 需要进行申请统计的资源类型
/** /**
* 获取各类资源数目 * 获取各类资源数目
* *

View File

@ -23,7 +23,6 @@ import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import springfox.documentation.annotations.ApiIgnore; import springfox.documentation.annotations.ApiIgnore;
import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;

View File

@ -10,7 +10,6 @@ import java.util.Date;
/** /**
* 公共字段自动填充值 * 公共字段自动填充值
*
*/ */
@Component @Component
public class FieldMetaObjectHandler implements MetaObjectHandler { public class FieldMetaObjectHandler implements MetaObjectHandler {

View File

@ -12,7 +12,6 @@ import java.util.List;
/** /**
* Excel模板读取类 * Excel模板读取类
*
*/ */
public class ExcelDataListener<E, T> extends AnalysisEventListener<T> { public class ExcelDataListener<E, T> extends AnalysisEventListener<T> {
private static final Logger LOGGER = LoggerFactory.getLogger(ExcelDataListener.class); private static final Logger LOGGER = LoggerFactory.getLogger(ExcelDataListener.class);
@ -53,6 +52,7 @@ public class ExcelDataListener<E, T> extends AnalysisEventListener<T> {
list.clear(); list.clear();
} }
} }
/** /**
* 所有数据解析完成了 都会来调用 * 所有数据解析完成了 都会来调用
*/ */

View File

@ -13,7 +13,6 @@ import java.util.List;
/** /**
* excel工具类 * excel工具类
*
*/ */
public class ExcelUtils { public class ExcelUtils {

View File

@ -9,6 +9,7 @@ import java.util.List;
public class PageUtil { public class PageUtil {
/** /**
* 手动分页类 * 手动分页类
*
* @param datas * @param datas
* @param pageSize * @param pageSize
* @param pageNo * @param pageNo

View File

@ -2,7 +2,6 @@ package io.renren.common.validator.group;
/** /**
* 阿里云 * 阿里云
*
*/ */
public interface AliyunGroup { public interface AliyunGroup {
} }

View File

@ -2,7 +2,6 @@ package io.renren.common.validator.group;
/** /**
* FastDFS * FastDFS
*
*/ */
public interface FastDFSGroup { public interface FastDFSGroup {
} }

View File

@ -2,7 +2,6 @@ package io.renren.common.validator.group;
/** /**
* 本地上传 * 本地上传
*
*/ */
public interface LocalGroup { public interface LocalGroup {
} }

View File

@ -2,7 +2,6 @@ package io.renren.common.validator.group;
/** /**
* MinIO * MinIO
*
*/ */
public interface MinioGroup { public interface MinioGroup {
} }

View File

@ -2,7 +2,6 @@ package io.renren.common.validator.group;
/** /**
* 腾讯云 * 腾讯云
*
*/ */
public interface QcloudGroup { public interface QcloudGroup {
} }

View File

@ -2,7 +2,6 @@ package io.renren.common.validator.group;
/** /**
* 七牛 * 七牛
*
*/ */
public interface QiniuGroup { public interface QiniuGroup {
} }

View File

@ -6,7 +6,6 @@ import org.springframework.context.annotation.Configuration;
/** /**
* 流程配置信息 * 流程配置信息
*
*/ */
@Configuration @Configuration
public class ProcessEngineConfig implements ProcessEngineConfigurationConfigurer { public class ProcessEngineConfig implements ProcessEngineConfigurationConfigurer {

View File

@ -22,7 +22,6 @@ import java.util.Map;
/** /**
* 模型管理 * 模型管理
*
*/ */
@RestController @RestController
@RequestMapping("/act/model") @RequestMapping("/act/model")

View File

@ -30,7 +30,6 @@ import java.util.Map;
/** /**
* 流程管理 * 流程管理
*
*/ */
@RestController @RestController
@RequestMapping("/act/process") @RequestMapping("/act/process")

View File

@ -26,7 +26,6 @@ import java.util.Map;
/** /**
* 转正申请 * 转正申请
*
*/ */
@RestController @RestController
@RequestMapping("act/demo/correction") @RequestMapping("act/demo/correction")

View File

@ -6,7 +6,6 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* 转正申请 * 转正申请
*
*/ */
@Mapper @Mapper
public interface CorrectionDao extends BaseDao<CorrectionEntity> { public interface CorrectionDao extends BaseDao<CorrectionEntity> {

View File

@ -11,7 +11,6 @@ import java.util.Date;
/** /**
* 转正申请 * 转正申请
*
*/ */
@Data @Data
@ApiModel(value = "转正申请") @ApiModel(value = "转正申请")

View File

@ -9,7 +9,6 @@ import java.util.Date;
/** /**
* 转正申请 * 转正申请
*
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)

View File

@ -7,7 +7,6 @@ import io.renren.modules.activiti.demo.entity.CorrectionEntity;
/** /**
* 转正申请 * 转正申请
*
*/ */
public interface CorrectionService extends CrudService<CorrectionEntity, CorrectionDTO> { public interface CorrectionService extends CrudService<CorrectionEntity, CorrectionDTO> {

View File

@ -13,7 +13,6 @@ import java.util.Map;
/** /**
* 转正申请 * 转正申请
*
*/ */
@Service @Service
public class CorrectionServiceImpl extends CrudServiceImpl<CorrectionDao, CorrectionEntity, CorrectionDTO> implements CorrectionService { public class CorrectionServiceImpl extends CrudServiceImpl<CorrectionDao, CorrectionEntity, CorrectionDTO> implements CorrectionService {

View File

@ -9,7 +9,6 @@ import java.io.Serializable;
/** /**
* 模型 * 模型
*
*/ */
@Data @Data
@Api(tags = "模型") @Api(tags = "模型")

View File

@ -11,7 +11,6 @@ import java.io.InputStream;
/** /**
* Stencilset * Stencilset
*
*/ */
@RestController @RestController
@RequestMapping("service") @RequestMapping("service")

View File

@ -17,7 +17,6 @@ import org.springframework.web.bind.annotation.RestController;
/** /**
* Model Editor * Model Editor
*
*/ */
@RestController @RestController
@RequestMapping("service") @RequestMapping("service")

View File

@ -24,7 +24,6 @@ import java.nio.charset.StandardCharsets;
/** /**
* Model Rest * Model Rest
*
*/ */
@RestController @RestController
@RequestMapping("service") @RequestMapping("service")

View File

@ -38,7 +38,6 @@ import java.util.zip.ZipInputStream;
/** /**
* 流程管理 * 流程管理
*
*/ */
@Service @Service
public class ActProcessService { public class ActProcessService {
@ -115,6 +114,7 @@ public class ActProcessService {
/** /**
* 部署 * 部署
*
* @param file 文件 * @param file 文件
*/ */
public void deploy(MultipartFile file) throws IOException { public void deploy(MultipartFile file) throws IOException {
@ -134,6 +134,7 @@ public class ActProcessService {
/** /**
* 激活流程 * 激活流程
*
* @param id 流程ID * @param id 流程ID
*/ */
public void active(String id) { public void active(String id) {
@ -142,6 +143,7 @@ public class ActProcessService {
/** /**
* 挂起流程 * 挂起流程
*
* @param id 流程ID * @param id 流程ID
*/ */
public void suspend(String id) { public void suspend(String id) {
@ -150,6 +152,7 @@ public class ActProcessService {
/** /**
* 将部署的流程转换为模型 * 将部署的流程转换为模型
*
* @param id 流程ID * @param id 流程ID
*/ */
public Model convertToModel(String id) throws UnsupportedEncodingException, XMLStreamException { public Model convertToModel(String id) throws UnsupportedEncodingException, XMLStreamException {
@ -185,6 +188,7 @@ public class ActProcessService {
/** /**
* 删除部署 * 删除部署
*
* @param deploymentId 部署ID * @param deploymentId 部署ID
*/ */
public void deleteDeployment(String deploymentId) { public void deleteDeployment(String deploymentId) {
@ -193,6 +197,7 @@ public class ActProcessService {
/** /**
* 获取资源文件 * 获取资源文件
*
* @param deploymentId 部署ID * @param deploymentId 部署ID
* @param resourceName 资源名称 * @param resourceName 资源名称
*/ */

View File

@ -1,7 +1,6 @@
package io.renren.modules.category.dao; package io.renren.modules.category.dao;
import io.renren.common.dao.BaseDao; import io.renren.common.dao.BaseDao;
import io.renren.modules.category.dto.CategoryDTO;
import io.renren.modules.category.entity.Category; import io.renren.modules.category.entity.Category;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;

View File

@ -1,7 +1,10 @@
package io.renren.modules.category.entity; package io.renren.modules.category.entity;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data; import lombok.Data;
import com.baomidou.mybatisplus.annotation.*;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import lombok.ToString; import lombok.ToString;

View File

@ -6,6 +6,7 @@ public class CommonUtils {
/** /**
* 得到中文首字母 * 得到中文首字母
*
* @param value * @param value
* @return * @return
*/ */

View File

@ -5,6 +5,7 @@ import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight; import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight; import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import lombok.Data; import lombok.Data;
import java.util.Date; import java.util.Date;
/** /**

View File

@ -1,7 +1,6 @@
package io.renren.modules.demanData.listener; package io.renren.modules.demanData.listener;
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.google.gson.Gson; import com.google.gson.Gson;
import com.google.gson.GsonBuilder; import com.google.gson.GsonBuilder;
import com.google.gson.JsonDeserializer; import com.google.gson.JsonDeserializer;

View File

@ -5,6 +5,7 @@ import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight; import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight; import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import lombok.Data; import lombok.Data;
import java.util.Date; import java.util.Date;
/** /**

View File

@ -15,7 +15,6 @@ import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import springfox.documentation.annotations.ApiIgnore; import springfox.documentation.annotations.ApiIgnore;
@ -25,7 +24,6 @@ import java.util.Map;
/** /**
* 新闻 * 新闻
*
*/ */
@RestController @RestController
@RequestMapping("demo/news") @RequestMapping("demo/news")

View File

@ -15,7 +15,6 @@ import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import springfox.documentation.annotations.ApiIgnore; import springfox.documentation.annotations.ApiIgnore;
@ -25,7 +24,6 @@ import java.util.Map;
/** /**
* 产品管理 * 产品管理
*
*/ */
@RestController @RestController
@RequestMapping("demo/product") @RequestMapping("demo/product")

View File

@ -9,7 +9,6 @@ import java.util.Map;
/** /**
* 新闻 * 新闻
*
*/ */
@Mapper @Mapper
public interface NewsDao extends BaseDao<NewsEntity> { public interface NewsDao extends BaseDao<NewsEntity> {

View File

@ -6,7 +6,6 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* 产品管理 * 产品管理
*
*/ */
@Mapper @Mapper
public interface ProductDao extends BaseDao<ProductEntity> { public interface ProductDao extends BaseDao<ProductEntity> {

View File

@ -6,7 +6,6 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* 产品参数管理 * 产品参数管理
*
*/ */
@Mapper @Mapper
public interface ProductParamsDao extends BaseDao<ProductParamsEntity> { public interface ProductParamsDao extends BaseDao<ProductParamsEntity> {

View File

@ -16,7 +16,6 @@ import java.util.Date;
/** /**
* 新闻管理 * 新闻管理
*
*/ */
@Data @Data
@ApiModel(value = "新闻管理") @ApiModel(value = "新闻管理")

View File

@ -11,7 +11,6 @@ import java.util.List;
/** /**
* 产品管理 * 产品管理
*
*/ */
@Data @Data
@ApiModel(value = "产品管理") @ApiModel(value = "产品管理")

View File

@ -9,7 +9,6 @@ import java.io.Serializable;
/** /**
* 产品参数管理 * 产品参数管理
*
*/ */
@Data @Data
@ApiModel(value = "产品参数管理") @ApiModel(value = "产品参数管理")

View File

@ -11,7 +11,6 @@ import java.util.Date;
/** /**
* Excel导入演示 * Excel导入演示
*
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)

View File

@ -11,7 +11,6 @@ import java.util.Date;
/** /**
* 新闻 * 新闻
*
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)

View File

@ -11,7 +11,6 @@ import java.util.Date;
/** /**
* 产品管理 * 产品管理
*
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)

View File

@ -11,7 +11,6 @@ import java.util.Date;
/** /**
* 产品参数管理 * 产品参数管理
*
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)

View File

@ -11,7 +11,6 @@ import java.util.Date;
/** /**
* Excel导入演示 * Excel导入演示
*
*/ */
@Data @Data
@ContentRowHeight(20) @ContentRowHeight(20)

View File

@ -6,7 +6,6 @@ import io.renren.modules.demo.entity.ExcelDataEntity;
/** /**
* Excel导入演示 * Excel导入演示
*
*/ */
public interface ExcelDataService extends CrudService<ExcelDataEntity, ExcelDataDTO> { public interface ExcelDataService extends CrudService<ExcelDataEntity, ExcelDataDTO> {

View File

@ -9,7 +9,6 @@ import java.util.Map;
/** /**
* 新闻 * 新闻
*
*/ */
public interface NewsService extends BaseService<NewsEntity> { public interface NewsService extends BaseService<NewsEntity> {

View File

@ -8,7 +8,6 @@ import java.util.List;
/** /**
* 产品参数管理 * 产品参数管理
*
*/ */
public interface ProductParamsService extends BaseService<ProductParamsEntity> { public interface ProductParamsService extends BaseService<ProductParamsEntity> {

View File

@ -6,7 +6,6 @@ import io.renren.modules.demo.entity.ProductEntity;
/** /**
* 产品管理 * 产品管理
*
*/ */
public interface ProductService extends CrudService<ProductEntity, ProductDTO> { public interface ProductService extends CrudService<ProductEntity, ProductDTO> {

View File

@ -13,7 +13,6 @@ import java.util.Map;
/** /**
* Excel导入演示 * Excel导入演示
*
*/ */
@Service @Service
public class ExcelDataServiceImpl extends CrudServiceImpl<ExcelDataDao, ExcelDataEntity, ExcelDataDTO> implements ExcelDataService { public class ExcelDataServiceImpl extends CrudServiceImpl<ExcelDataDao, ExcelDataEntity, ExcelDataDTO> implements ExcelDataService {

View File

@ -14,7 +14,6 @@ import java.util.List;
/** /**
* 产品参数管理 * 产品参数管理
*
*/ */
@Service @Service
public class ProductParamsServiceImpl extends BaseServiceImpl<ProductParamsDao, ProductParamsEntity> implements ProductParamsService { public class ProductParamsServiceImpl extends BaseServiceImpl<ProductParamsDao, ProductParamsEntity> implements ProductParamsService {

View File

@ -18,7 +18,6 @@ import java.util.Map;
/** /**
* 产品管理 * 产品管理
*
*/ */
@Service @Service
public class ProductServiceImpl extends CrudServiceImpl<ProductDao, ProductEntity, ProductDTO> implements ProductService { public class ProductServiceImpl extends CrudServiceImpl<ProductDao, ProductEntity, ProductDTO> implements ProductService {

View File

@ -79,5 +79,4 @@ public class TbDeviceController {
} }
} }

View File

@ -11,7 +11,6 @@ import java.sql.SQLException;
/** /**
* 数据源信息 * 数据源信息
*
*/ */
@Data @Data
public class DataSourceInfo { public class DataSourceInfo {

View File

@ -5,7 +5,6 @@ import io.renren.modules.devtools.utils.DbType;
/** /**
* Query * Query
*
*/ */
public interface AbstractQuery { public interface AbstractQuery {

View File

@ -5,7 +5,6 @@ import org.apache.commons.lang.StringUtils;
/** /**
* MySQL查询 * MySQL查询
*
*/ */
public class MySqlQuery implements AbstractQuery { public class MySqlQuery implements AbstractQuery {

View File

@ -6,7 +6,6 @@ import org.apache.commons.lang.StringUtils;
/** /**
* Oracle查询 * Oracle查询
*
*/ */
public class OracleQuery implements AbstractQuery { public class OracleQuery implements AbstractQuery {

View File

@ -5,7 +5,6 @@ import org.apache.commons.lang.StringUtils;
/** /**
* PostgreSql查询 * PostgreSql查询
*
*/ */
public class PostgreSqlQuery implements AbstractQuery { public class PostgreSqlQuery implements AbstractQuery {

View File

@ -5,7 +5,6 @@ import org.apache.commons.lang.StringUtils;
/** /**
* SqlServer查询 * SqlServer查询
*
*/ */
public class SqlServerQuery implements AbstractQuery { public class SqlServerQuery implements AbstractQuery {

View File

@ -13,7 +13,6 @@ import java.util.Map;
/** /**
* 基类管理 * 基类管理
*
*/ */
@RestController @RestController
@RequestMapping("devtools/baseclass") @RequestMapping("devtools/baseclass")

View File

@ -15,7 +15,6 @@ import java.util.Map;
/** /**
* 数据源管理 * 数据源管理
*
*/ */
@RestController @RestController
@RequestMapping("devtools/datasource") @RequestMapping("devtools/datasource")

View File

@ -13,7 +13,6 @@ import java.util.Set;
/** /**
* 字段类型管理 * 字段类型管理
*
*/ */
@RestController @RestController
@RequestMapping("devtools/fieldtype") @RequestMapping("devtools/fieldtype")

View File

@ -10,7 +10,6 @@ import org.springframework.web.bind.annotation.*;
/** /**
* 代码生成参数配置 * 代码生成参数配置
*
*/ */
@RestController @RestController
@RequestMapping("devtools/param") @RequestMapping("devtools/param")

View File

@ -20,7 +20,6 @@ import java.util.Map;
/** /**
* 代码生成 * 代码生成
*
*/ */
@RestController @RestController
@RequestMapping("devtools") @RequestMapping("devtools")

View File

@ -15,7 +15,6 @@ import java.util.Map;
/** /**
* 模板管理 * 模板管理
*
*/ */
@RestController @RestController
@RequestMapping("devtools/template") @RequestMapping("devtools/template")

View File

@ -6,7 +6,6 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* 基类管理 * 基类管理
*
*/ */
@Mapper @Mapper
public interface BaseClassDao extends BaseMapper<BaseClassEntity> { public interface BaseClassDao extends BaseMapper<BaseClassEntity> {

View File

@ -6,7 +6,6 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* 数据源管理 * 数据源管理
*
*/ */
@Mapper @Mapper
public interface DataSourceDao extends BaseMapper<DataSourceEntity> { public interface DataSourceDao extends BaseMapper<DataSourceEntity> {

View File

@ -8,7 +8,6 @@ import java.util.Set;
/** /**
* 字段类型管理 * 字段类型管理
*
*/ */
@Mapper @Mapper
public interface FieldTypeDao extends BaseMapper<FieldTypeEntity> { public interface FieldTypeDao extends BaseMapper<FieldTypeEntity> {

View File

@ -6,7 +6,6 @@ import java.util.Map;
/** /**
* 创建菜单 * 创建菜单
*
*/ */
@Mapper @Mapper
public interface GeneratorMenuDao { public interface GeneratorMenuDao {

View File

@ -8,7 +8,6 @@ import java.util.List;
/** /**
* *
*
*/ */
@Mapper @Mapper
public interface TableFieldDao extends BaseMapper<TableFieldEntity> { public interface TableFieldDao extends BaseMapper<TableFieldEntity> {

View File

@ -6,7 +6,6 @@ import org.apache.ibatis.annotations.Mapper;
/** /**
* *
*
*/ */
@Mapper @Mapper
public interface TableInfoDao extends BaseMapper<TableInfoEntity> { public interface TableInfoDao extends BaseMapper<TableInfoEntity> {

View File

@ -8,7 +8,6 @@ import java.util.Map;
/** /**
* 模板管理 * 模板管理
*
*/ */
@Mapper @Mapper
public interface TemplateDao extends BaseMapper<TemplateEntity> { public interface TemplateDao extends BaseMapper<TemplateEntity> {

View File

@ -9,7 +9,6 @@ import java.util.Date;
/** /**
* 基类管理 * 基类管理
*
*/ */
@Data @Data
@TableName("gen_base_class") @TableName("gen_base_class")

View File

@ -10,7 +10,6 @@ import java.util.Date;
/** /**
* 数据源管理 * 数据源管理
*
*/ */
@Data @Data
@TableName("gen_datasource") @TableName("gen_datasource")

View File

@ -10,7 +10,6 @@ import java.util.Date;
/** /**
* 字段类型管理 * 字段类型管理
*
*/ */
@Data @Data
@TableName("gen_field_type") @TableName("gen_field_type")

View File

@ -6,7 +6,6 @@ import java.io.Serializable;
/** /**
* 代码生成参数配置 * 代码生成参数配置
*
*/ */
@Data @Data
public class GenParam implements Serializable { public class GenParam implements Serializable {

View File

@ -4,7 +4,6 @@ import lombok.Data;
/** /**
* 创建菜单 * 创建菜单
*
*/ */
@Data @Data
public class MenuEntity { public class MenuEntity {

View File

@ -7,7 +7,6 @@ import lombok.Data;
/** /**
* 表字段信息 * 表字段信息
*
*/ */
@Data @Data
@TableName("gen_table_field") @TableName("gen_table_field")
@ -39,9 +38,11 @@ public class TableFieldEntity {
*/ */
@TableField(exist = false) @TableField(exist = false)
private String comment; private String comment;
public String getComment() { public String getComment() {
return this.columnComment; return this.columnComment;
} }
/** /**
* 属性名 * 属性名
*/ */

View File

@ -8,7 +8,6 @@ import java.util.List;
/** /**
* 表信息 * 表信息
*
*/ */
@Data @Data
@TableName("gen_table_info") @TableName("gen_table_info")

View File

@ -10,7 +10,6 @@ import java.util.Date;
/** /**
* 模板管理 * 模板管理
*
*/ */
@Data @Data
@TableName("gen_template") @TableName("gen_template")

View File

@ -10,7 +10,6 @@ import java.util.Map;
/** /**
* 基类管理 * 基类管理
*
*/ */
public interface BaseClassService extends BaseService<BaseClassEntity> { public interface BaseClassService extends BaseService<BaseClassEntity> {

View File

@ -9,7 +9,6 @@ import java.util.Map;
/** /**
* 数据源管理 * 数据源管理
*
*/ */
public interface DataSourceService extends BaseService<DataSourceEntity> { public interface DataSourceService extends BaseService<DataSourceEntity> {

View File

@ -9,7 +9,6 @@ import java.util.Set;
/** /**
* 字段类型管理 * 字段类型管理
*
*/ */
public interface FieldTypeService extends BaseService<FieldTypeEntity> { public interface FieldTypeService extends BaseService<FieldTypeEntity> {
PageData<FieldTypeEntity> page(Map<String, Object> params); PageData<FieldTypeEntity> page(Map<String, Object> params);

View File

@ -9,7 +9,6 @@ import java.util.List;
/** /**
* 代码生成 * 代码生成
*
*/ */
public interface GeneratorService { public interface GeneratorService {

View File

@ -8,7 +8,6 @@ import java.util.List;
/** /**
* *
*
*/ */
public interface TableFieldService extends BaseService<TableFieldEntity> { public interface TableFieldService extends BaseService<TableFieldEntity> {

View File

@ -9,7 +9,6 @@ import java.util.Map;
/** /**
* *
*
*/ */
public interface TableInfoService extends BaseService<TableInfoEntity> { public interface TableInfoService extends BaseService<TableInfoEntity> {

View File

@ -10,7 +10,6 @@ import java.util.Map;
/** /**
* 模板管理 * 模板管理
*
*/ */
public interface TemplateService extends BaseService<TemplateEntity> { public interface TemplateService extends BaseService<TemplateEntity> {

View File

@ -16,7 +16,6 @@ import java.util.Map;
/** /**
* 基类管理 * 基类管理
*
*/ */
@Service @Service
public class BaseClassServiceImpl extends BaseServiceImpl<BaseClassDao, BaseClassEntity> implements BaseClassService { public class BaseClassServiceImpl extends BaseServiceImpl<BaseClassDao, BaseClassEntity> implements BaseClassService {

View File

@ -17,7 +17,6 @@ import java.util.Map;
/** /**
* 数据源管理 * 数据源管理
*
*/ */
@Service @Service
public class DataSourceServiceImpl extends BaseServiceImpl<DataSourceDao, DataSourceEntity> implements DataSourceService { public class DataSourceServiceImpl extends BaseServiceImpl<DataSourceDao, DataSourceEntity> implements DataSourceService {

Some files were not shown because too many files have changed in this diff Show More