From 0febcd63deb3e520d250df0f4565816e6cf9456a Mon Sep 17 00:00:00 2001 From: yangjun <1173114630@qq.com> Date: Wed, 20 Jul 2022 08:34:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=B3=BB=E7=BB=9F=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../TqdGatewayConfigController.java | 171 ++++++++++++++++++ .../nd/gateway/entity/TqdGatewayConfig.java | 89 +++++++++ .../mapper/TqdGatewayConfigMapper.java | 17 ++ .../mapper/xml/TqdGatewayConfigMapper.xml | 5 + .../service/ITqdGatewayConfigService.java | 14 ++ .../impl/TqdGatewayConfigServiceImpl.java | 19 ++ 6 files changed, 315 insertions(+) create mode 100644 src/main/java/com/nd/gateway/controller/TqdGatewayConfigController.java create mode 100644 src/main/java/com/nd/gateway/entity/TqdGatewayConfig.java create mode 100644 src/main/java/com/nd/gateway/mapper/TqdGatewayConfigMapper.java create mode 100644 src/main/java/com/nd/gateway/mapper/xml/TqdGatewayConfigMapper.xml create mode 100644 src/main/java/com/nd/gateway/service/ITqdGatewayConfigService.java create mode 100644 src/main/java/com/nd/gateway/service/impl/TqdGatewayConfigServiceImpl.java diff --git a/src/main/java/com/nd/gateway/controller/TqdGatewayConfigController.java b/src/main/java/com/nd/gateway/controller/TqdGatewayConfigController.java new file mode 100644 index 0000000..69df958 --- /dev/null +++ b/src/main/java/com/nd/gateway/controller/TqdGatewayConfigController.java @@ -0,0 +1,171 @@ +package com.nd.gateway.controller; + +import java.util.Arrays; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; +import java.io.IOException; +import java.io.UnsupportedEncodingException; +import java.net.URLDecoder; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import org.jeecg.common.api.vo.Result; +import org.jeecg.common.system.query.QueryGenerator; +import org.jeecg.common.util.oConvertUtils; +import com.nd.gateway.entity.TqdGatewayConfig; +import com.nd.gateway.service.ITqdGatewayConfigService; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import lombok.extern.slf4j.Slf4j; + +import org.jeecgframework.poi.excel.ExcelImportUtil; +import org.jeecgframework.poi.excel.def.NormalExcelConstants; +import org.jeecgframework.poi.excel.entity.ExportParams; +import org.jeecgframework.poi.excel.entity.ImportParams; +import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; +import org.jeecg.common.system.base.controller.JeecgController; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import org.springframework.web.multipart.MultipartHttpServletRequest; +import org.springframework.web.servlet.ModelAndView; +import com.alibaba.fastjson.JSON; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.jeecg.common.aspect.annotation.AutoLog; + + /** + * @Description: 网站配置 + * @Author: jeecg-boot + * @Date: 2022-07-19 + * @Version: V1.0 + */ +@Api(tags="网站配置") +@RestController +@RequestMapping("/gateway/tqdGatewayConfig") +@Slf4j +public class TqdGatewayConfigController extends JeecgController { + @Autowired + private ITqdGatewayConfigService tqdGatewayConfigService; + + /** + * 分页列表查询 + * + * @param tqdGatewayConfig + * @param pageNo + * @param pageSize + * @param req + * @return + */ + @AutoLog(value = "网站配置-分页列表查询") + @ApiOperation(value="网站配置-分页列表查询", notes="网站配置-分页列表查询") + @GetMapping(value = "/list") + public Result queryPageList(TqdGatewayConfig tqdGatewayConfig, + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, + HttpServletRequest req) { + QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(tqdGatewayConfig, req.getParameterMap()); + Page page = new Page(pageNo, pageSize); + IPage pageList = tqdGatewayConfigService.page(page, queryWrapper); + return Result.OK(pageList); + } + + /** + * 添加 + * + * @param tqdGatewayConfig + * @return + */ + @AutoLog(value = "网站配置-添加") + @ApiOperation(value="网站配置-添加", notes="网站配置-添加") + @PostMapping(value = "/add") + public Result add(@RequestBody TqdGatewayConfig tqdGatewayConfig) { + tqdGatewayConfigService.save(tqdGatewayConfig); + return Result.OK("添加成功!"); + } + + /** + * 编辑 + * + * @param tqdGatewayConfig + * @return + */ + @AutoLog(value = "网站配置-编辑") + @ApiOperation(value="网站配置-编辑", notes="网站配置-编辑") + @PutMapping(value = "/edit") + public Result edit(@RequestBody TqdGatewayConfig tqdGatewayConfig) { + tqdGatewayConfigService.updateById(tqdGatewayConfig); + return Result.OK("编辑成功!"); + } + + /** + * 通过id删除 + * + * @param id + * @return + */ + @AutoLog(value = "网站配置-通过id删除") + @ApiOperation(value="网站配置-通过id删除", notes="网站配置-通过id删除") + @DeleteMapping(value = "/delete") + public Result delete(@RequestParam(name="id",required=true) String id) { + tqdGatewayConfigService.removeById(id); + return Result.OK("删除成功!"); + } + + /** + * 批量删除 + * + * @param ids + * @return + */ + @AutoLog(value = "网站配置-批量删除") + @ApiOperation(value="网站配置-批量删除", notes="网站配置-批量删除") + @DeleteMapping(value = "/deleteBatch") + public Result deleteBatch(@RequestParam(name="ids",required=true) String ids) { + this.tqdGatewayConfigService.removeByIds(Arrays.asList(ids.split(","))); + return Result.OK("批量删除成功!"); + } + + /** + * 通过id查询 + * + * @param id + * @return + */ + @AutoLog(value = "网站配置-通过id查询") + @ApiOperation(value="网站配置-通过id查询", notes="网站配置-通过id查询") + @GetMapping(value = "/queryById") + public Result queryById(@RequestParam(name="id",required=true) String id) { + TqdGatewayConfig tqdGatewayConfig = tqdGatewayConfigService.getById(id); + if(tqdGatewayConfig==null) { + return Result.error("未找到对应数据"); + } + return Result.OK(tqdGatewayConfig); + } + + /** + * 导出excel + * + * @param request + * @param tqdGatewayConfig + */ + @RequestMapping(value = "/exportXls") + public ModelAndView exportXls(HttpServletRequest request, TqdGatewayConfig tqdGatewayConfig) { + return super.exportXls(request, tqdGatewayConfig, TqdGatewayConfig.class, "网站配置"); + } + + /** + * 通过excel导入数据 + * + * @param request + * @param response + * @return + */ + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) + public Result importExcel(HttpServletRequest request, HttpServletResponse response) { + return super.importExcel(request, response, TqdGatewayConfig.class); + } + +} diff --git a/src/main/java/com/nd/gateway/entity/TqdGatewayConfig.java b/src/main/java/com/nd/gateway/entity/TqdGatewayConfig.java new file mode 100644 index 0000000..0edd542 --- /dev/null +++ b/src/main/java/com/nd/gateway/entity/TqdGatewayConfig.java @@ -0,0 +1,89 @@ +package com.nd.gateway.entity; + +import java.io.Serializable; +import java.io.UnsupportedEncodingException; +import java.util.Date; +import java.math.BigDecimal; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.springframework.format.annotation.DateTimeFormat; +import org.jeecgframework.poi.excel.annotation.Excel; +import org.jeecg.common.aspect.annotation.Dict; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; + +/** + * @Description: 网站配置 + * @Author: jeecg-boot + * @Date: 2022-07-19 + * @Version: V1.0 + */ +@Data +@TableName("tqd_gateway_config") +@Accessors(chain = true) +@EqualsAndHashCode(callSuper = false) +@ApiModel(value="tqd_gateway_config对象", description="网站配置") +public class TqdGatewayConfig implements Serializable { + private static final long serialVersionUID = 1L; + + /**主键*/ + @TableId(type = IdType.ASSIGN_ID) + @ApiModelProperty(value = "主键") + private java.lang.String id; + /**创建人*/ + @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; + /**所属部门*/ + @ApiModelProperty(value = "所属部门") + private java.lang.String sysOrgCode; + /**简介图片*/ + @Excel(name = "简介图片", width = 15) + @ApiModelProperty(value = "简介图片") + private java.lang.String jjPic; + /**简介介绍*/ + @Excel(name = "简介介绍", width = 15) + @ApiModelProperty(value = "简介介绍") + private java.lang.String jjContent; + /**联系电话*/ + @Excel(name = "联系电话", width = 15) + @ApiModelProperty(value = "联系电话") + private java.lang.String tel; + /**电子邮箱*/ + @Excel(name = "电子邮箱", width = 15) + @ApiModelProperty(value = "电子邮箱") + private java.lang.String dzyx; + /**联系我们图片*/ + @Excel(name = "联系我们图片", width = 15) + @ApiModelProperty(value = "联系我们图片") + private java.lang.String lxwmPic; + /**地址定位图片*/ + @Excel(name = "地址定位图片", width = 15) + @ApiModelProperty(value = "地址定位图片") + private java.lang.String dzdwPic; + /**地址*/ + @Excel(name = "地址", width = 15) + @ApiModelProperty(value = "地址") + private java.lang.String address; + /**座机*/ + @Excel(name = "座机", width = 15) + @ApiModelProperty(value = "座机") + private java.lang.String zuoji; +} diff --git a/src/main/java/com/nd/gateway/mapper/TqdGatewayConfigMapper.java b/src/main/java/com/nd/gateway/mapper/TqdGatewayConfigMapper.java new file mode 100644 index 0000000..7a30721 --- /dev/null +++ b/src/main/java/com/nd/gateway/mapper/TqdGatewayConfigMapper.java @@ -0,0 +1,17 @@ +package com.nd.gateway.mapper; + +import java.util.List; + +import org.apache.ibatis.annotations.Param; +import com.nd.gateway.entity.TqdGatewayConfig; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @Description: 网站配置 + * @Author: jeecg-boot + * @Date: 2022-07-19 + * @Version: V1.0 + */ +public interface TqdGatewayConfigMapper extends BaseMapper { + +} diff --git a/src/main/java/com/nd/gateway/mapper/xml/TqdGatewayConfigMapper.xml b/src/main/java/com/nd/gateway/mapper/xml/TqdGatewayConfigMapper.xml new file mode 100644 index 0000000..d0ae445 --- /dev/null +++ b/src/main/java/com/nd/gateway/mapper/xml/TqdGatewayConfigMapper.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/java/com/nd/gateway/service/ITqdGatewayConfigService.java b/src/main/java/com/nd/gateway/service/ITqdGatewayConfigService.java new file mode 100644 index 0000000..2fcac68 --- /dev/null +++ b/src/main/java/com/nd/gateway/service/ITqdGatewayConfigService.java @@ -0,0 +1,14 @@ +package com.nd.gateway.service; + +import com.nd.gateway.entity.TqdGatewayConfig; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * @Description: 网站配置 + * @Author: jeecg-boot + * @Date: 2022-07-19 + * @Version: V1.0 + */ +public interface ITqdGatewayConfigService extends IService { + +} diff --git a/src/main/java/com/nd/gateway/service/impl/TqdGatewayConfigServiceImpl.java b/src/main/java/com/nd/gateway/service/impl/TqdGatewayConfigServiceImpl.java new file mode 100644 index 0000000..746e5e1 --- /dev/null +++ b/src/main/java/com/nd/gateway/service/impl/TqdGatewayConfigServiceImpl.java @@ -0,0 +1,19 @@ +package com.nd.gateway.service.impl; + +import com.nd.gateway.entity.TqdGatewayConfig; +import com.nd.gateway.mapper.TqdGatewayConfigMapper; +import com.nd.gateway.service.ITqdGatewayConfigService; +import org.springframework.stereotype.Service; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * @Description: 网站配置 + * @Author: jeecg-boot + * @Date: 2022-07-19 + * @Version: V1.0 + */ +@Service +public class TqdGatewayConfigServiceImpl extends ServiceImpl implements ITqdGatewayConfigService { + +}