子站管理恢复后台代码

Gitea 3 days ago
parent ef15eb0962
commit 0da3a4d498
  1. 179
      jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/cms/controller/SubwesideController.java
  2. 90
      jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/cms/entity/Subweside.java
  3. 18
      jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/cms/mapper/SubwesideMapper.java
  4. 15
      jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/cms/service/ISubwesideService.java
  5. 20
      jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/cms/service/impl/SubwesideServiceImpl.java

@ -0,0 +1,179 @@
package org.jeecg.modules.demo.cms.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.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.jeecg.modules.demo.cms.entity.Subweside;
import org.jeecg.modules.demo.cms.service.ISubwesideService;
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;
import org.apache.shiro.authz.annotation.RequiresPermissions;
/**
* @Description: 子站管理
* @Author: jeecg-boot
* @Date: 2024-07-08
* @Version: V1.0
*/
@Api(tags="子站管理")
@RestController
@RequestMapping("/subweside/subweside")
@Slf4j
public class SubwesideController extends JeecgController<Subweside, ISubwesideService> {
@Autowired
private ISubwesideService subwesideService;
/**
* 分页列表查询
*
* @param subweside
* @param pageNo
* @param pageSize
* @param req
* @return
*/
//@AutoLog(value = "子站管理-分页列表查询")
@ApiOperation(value="子站管理-分页列表查询", notes="子站管理-分页列表查询")
@GetMapping(value = "/list")
public Result<IPage<Subweside>> queryPageList(Subweside subweside,
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
HttpServletRequest req) {
QueryWrapper<Subweside> queryWrapper = QueryGenerator.initQueryWrapper(subweside, req.getParameterMap());
Page<Subweside> page = new Page<Subweside>(pageNo, pageSize);
IPage<Subweside> pageList = subwesideService.page(page, queryWrapper);
return Result.OK(pageList);
}
/**
* 添加
*
* @param subweside
* @return
*/
@AutoLog(value = "子站管理-添加")
@ApiOperation(value="子站管理-添加", notes="子站管理-添加")
@PostMapping(value = "/add")
public Result<String> add(@RequestBody Subweside subweside) {
subwesideService.save(subweside);
return Result.OK("添加成功!");
}
/**
* 编辑
*
* @param subweside
* @return
*/
@AutoLog(value = "子站管理-编辑")
@ApiOperation(value="子站管理-编辑", notes="子站管理-编辑")
@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
public Result<String> edit(@RequestBody Subweside subweside) {
subwesideService.updateById(subweside);
return Result.OK("编辑成功!");
}
/**
* 通过id删除
*
* @param id
* @return
*/
@AutoLog(value = "子站管理-通过id删除")
@ApiOperation(value="子站管理-通过id删除", notes="子站管理-通过id删除")
@DeleteMapping(value = "/delete")
public Result<String> delete(@RequestParam(name="id",required=true) String id) {
subwesideService.removeById(id);
return Result.OK("删除成功!");
}
/**
* 批量删除
*
* @param ids
* @return
*/
@AutoLog(value = "子站管理-批量删除")
@ApiOperation(value="子站管理-批量删除", notes="子站管理-批量删除")
@DeleteMapping(value = "/deleteBatch")
public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
this.subwesideService.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<Subweside> queryById(@RequestParam(name="id",required=true) String id) {
Subweside subweside = subwesideService.getById(id);
if(subweside==null) {
return Result.error("未找到对应数据");
}
return Result.OK(subweside);
}
/**
* 导出excel
*
* @param request
* @param subweside
*/
@RequestMapping(value = "/exportXls")
public ModelAndView exportXls(HttpServletRequest request, Subweside subweside) {
return super.exportXls(request, subweside, Subweside.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, Subweside.class);
}
}

@ -0,0 +1,90 @@
package org.jeecg.modules.demo.cms.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 com.baomidou.mybatisplus.annotation.TableLogic;
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: 2024-07-08
* @Version: V1.0
*/
@Data
@TableName("subweside")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="subweside对象", description="子站管理")
public class Subweside 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 subname;
/**所属比赛*/
@Excel(name = "所属比赛", width = 15)
@ApiModelProperty(value = "所属比赛")
private java.lang.String comp;
/**比赛管理员*/
@Excel(name = "比赛管理员", width = 15)
@ApiModelProperty(value = "比赛管理员")
private java.lang.String compadmin;
/**比赛管理员*/
@Excel(name = "比赛管理员", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "id")
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "id")
@ApiModelProperty(value = "比赛管理员")
private java.lang.String compadminid;
/**比赛负责部门*/
@Excel(name = "比赛负责部门", width = 15)
@ApiModelProperty(value = "比赛负责部门")
private java.lang.String compdep;
/**比赛负责部门*/
@Excel(name = "比赛负责部门", width = 15, dictTable = "sys_depart", dicText = "depart_name", dicCode = "id")
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id")
@ApiModelProperty(value = "比赛负责部门")
private java.lang.String compdepid;
/**所属比赛*/
@Excel(name = "所属比赛", width = 15, dictTable = "comp", dicText = "comp_name", dicCode = "id")
@Dict(dictTable = "comp", dicText = "comp_name", dicCode = "id")
@ApiModelProperty(value = "所属比赛")
private java.lang.String compid;
}

@ -0,0 +1,18 @@
package org.jeecg.modules.demo.cms.mapper;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.jeecg.modules.demo.cms.entity.Subweside;
/**
* @Description: 子站管理
* @Author: jeecg-boot
* @Date: 2024-07-08
* @Version: V1.0
*/
public interface SubwesideMapper extends BaseMapper<Subweside> {
}

@ -0,0 +1,15 @@
package org.jeecg.modules.demo.cms.service;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.demo.cms.entity.Subweside;
/**
* @Description: 子站管理
* @Author: jeecg-boot
* @Date: 2024-07-08
* @Version: V1.0
*/
public interface ISubwesideService extends IService<Subweside> {
}

@ -0,0 +1,20 @@
package org.jeecg.modules.demo.cms.service.impl;
import org.jeecg.modules.demo.cms.entity.Subweside;
import org.jeecg.modules.demo.cms.mapper.SubwesideMapper;
import org.jeecg.modules.demo.cms.service.ISubwesideService;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* @Description: 子站管理
* @Author: jeecg-boot
* @Date: 2024-07-08
* @Version: V1.0
*/
@Service
public class SubwesideServiceImpl extends ServiceImpl<SubwesideMapper, Subweside> implements ISubwesideService {
}
Loading…
Cancel
Save