diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdExamnumController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdExamnumController.java new file mode 100644 index 0000000..6919bb9 --- /dev/null +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdExamnumController.java @@ -0,0 +1,116 @@ +package com.ruoyi.web.controller.system; + +import java.util.List; +import org.apache.shiro.authz.annotation.RequiresPermissions; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.ModelMap; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.ResponseBody; +import com.ruoyi.common.annotation.Log; +import com.ruoyi.common.enums.BusinessType; +import com.ruoyi.system.domain.TdExamnum; +import com.ruoyi.system.service.ITdExamnumService; +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.utils.poi.ExcelUtil; +import com.ruoyi.common.core.page.TableDataInfo; + +/** + * 考试结果Controller + * + * @author ruoyi + * @date 2024-04-10 + */ +@Controller +@RequestMapping("/system/examnum") +public class TdExamnumController extends BaseController +{ + private String prefix = "system/examnum"; + + @Autowired + private ITdExamnumService tdExamnumService; + + @RequiresPermissions("system:examnum:view") + @GetMapping() + public String examnum() + { + return prefix + "/examnum"; + } + + /** + * 查询考试结果列表 + */ + @RequiresPermissions("system:examnum:list") + @PostMapping("/list") + @ResponseBody + public TableDataInfo list(TdExamnum tdExamnum) + { + startPage(); + List list = tdExamnumService.selectTdExamnumList(tdExamnum); + return getDataTable(list); + } + + /** + * 导出考试结果列表 + */ + @RequiresPermissions("system:examnum:export") + @Log(title = "考试结果", businessType = BusinessType.EXPORT) + @PostMapping("/export") + @ResponseBody + public AjaxResult export(TdExamnum tdExamnum) + { + List list = tdExamnumService.selectTdExamnumList(tdExamnum); + ExcelUtil util = new ExcelUtil(TdExamnum.class); + return util.exportExcel(list, "考试结果数据"); + } + + /** + * 新增考试结果 + */ + @GetMapping("/add") + public String add() + { + return prefix + "/add"; + } + + /** + * 新增保存考试结果 + */ + @RequiresPermissions("system:examnum:add") + @Log(title = "考试结果", businessType = BusinessType.INSERT) + @PostMapping("/add") + @ResponseBody + public AjaxResult addSaveNew(TdExamnum tdExamnum) + { + return toAjax(tdExamnumService.insertTdExamnum(tdExamnum)); + } + + /** + * 新增保存考试结果 + */ + @RequiresPermissions("system:examnum:add") + @Log(title = "考试结果", businessType = BusinessType.INSERT) + @PostMapping("/add") + @ResponseBody + public AjaxResult addSave(TdExamnum tdExamnum) + { + return toAjax(tdExamnumService.insertTdExamnum(tdExamnum)); + } + + /** + * 修改保存考试结果 + */ + @RequiresPermissions("system:examnum:edit") + @Log(title = "考试结果", businessType = BusinessType.UPDATE) + @PostMapping("/edit") + @ResponseBody + public AjaxResult editSave(TdExamnum tdExamnum) + { + return toAjax(tdExamnumService.updateTdExamnum(tdExamnum)); + } + +} diff --git a/ruoyi-admin/src/main/resources/templates/system/examnum/examnum.html b/ruoyi-admin/src/main/resources/templates/system/examnum/examnum.html new file mode 100644 index 0000000..ded2257 --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/examnum/examnum.html @@ -0,0 +1,112 @@ + + + + + + +
+
+
+
+
+
    +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
+
+ + +
+
+
+
+
+ + + + \ No newline at end of file diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdExamnum.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdExamnum.java new file mode 100644 index 0000000..b703bea --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdExamnum.java @@ -0,0 +1,125 @@ +package com.ruoyi.system.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; + +/** + * 考试结果对象 td_examnum + * + * @author ruoyi + * @date 2024-04-10 + */ +public class TdExamnum extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** id */ + private Long id; + + /** 考试姓名 */ + @Excel(name = "考试姓名") + private String userName; + + /** 考试分数 */ + @Excel(name = "考试分数") + private Long examResult; + + /** 开始时间 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date startTime; + + /** 结束时间 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date endTime; + + /** 单位名称 */ + @Excel(name = "单位名称") + private String dept; + + /** 试题类型 */ + @Excel(name = "试题类型") + private String tyep; + + public void setId(Long id) + { + this.id = id; + } + + public Long getId() + { + return id; + } + public void setUserName(String userName) + { + this.userName = userName; + } + + public String getUserName() + { + return userName; + } + public void setExamResult(Long examResult) + { + this.examResult = examResult; + } + + public Long getExamResult() + { + return examResult; + } + public void setStartTime(Date startTime) + { + this.startTime = startTime; + } + + public Date getStartTime() + { + return startTime; + } + public void setEndTime(Date endTime) + { + this.endTime = endTime; + } + + public Date getEndTime() + { + return endTime; + } + public void setDept(String dept) + { + this.dept = dept; + } + + public String getDept() + { + return dept; + } + public void setTyep(String tyep) + { + this.tyep = tyep; + } + + public String getTyep() + { + return tyep; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("userName", getUserName()) + .append("examResult", getExamResult()) + .append("startTime", getStartTime()) + .append("endTime", getEndTime()) + .append("dept", getDept()) + .append("tyep", getTyep()) + .toString(); + } +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdExamnumMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdExamnumMapper.java new file mode 100644 index 0000000..58618a5 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdExamnumMapper.java @@ -0,0 +1,61 @@ +package com.ruoyi.system.mapper; + +import java.util.List; +import com.ruoyi.system.domain.TdExamnum; + +/** + * 考试结果Mapper接口 + * + * @author ruoyi + * @date 2024-04-10 + */ +public interface TdExamnumMapper +{ + /** + * 查询考试结果 + * + * @param id 考试结果主键 + * @return 考试结果 + */ + public TdExamnum selectTdExamnumById(Long id); + + /** + * 查询考试结果列表 + * + * @param tdExamnum 考试结果 + * @return 考试结果集合 + */ + public List selectTdExamnumList(TdExamnum tdExamnum); + + /** + * 新增考试结果 + * + * @param tdExamnum 考试结果 + * @return 结果 + */ + public int insertTdExamnum(TdExamnum tdExamnum); + + /** + * 修改考试结果 + * + * @param tdExamnum 考试结果 + * @return 结果 + */ + public int updateTdExamnum(TdExamnum tdExamnum); + + /** + * 删除考试结果 + * + * @param id 考试结果主键 + * @return 结果 + */ + public int deleteTdExamnumById(Long id); + + /** + * 批量删除考试结果 + * + * @param ids 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteTdExamnumByIds(String[] ids); +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdExamnumService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdExamnumService.java new file mode 100644 index 0000000..7ca1fd7 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdExamnumService.java @@ -0,0 +1,61 @@ +package com.ruoyi.system.service; + +import java.util.List; +import com.ruoyi.system.domain.TdExamnum; + +/** + * 考试结果Service接口 + * + * @author ruoyi + * @date 2024-04-10 + */ +public interface ITdExamnumService +{ + /** + * 查询考试结果 + * + * @param id 考试结果主键 + * @return 考试结果 + */ + public TdExamnum selectTdExamnumById(Long id); + + /** + * 查询考试结果列表 + * + * @param tdExamnum 考试结果 + * @return 考试结果集合 + */ + public List selectTdExamnumList(TdExamnum tdExamnum); + + /** + * 新增考试结果 + * + * @param tdExamnum 考试结果 + * @return 结果 + */ + public int insertTdExamnum(TdExamnum tdExamnum); + + /** + * 修改考试结果 + * + * @param tdExamnum 考试结果 + * @return 结果 + */ + public int updateTdExamnum(TdExamnum tdExamnum); + + /** + * 批量删除考试结果 + * + * @param ids 需要删除的考试结果主键集合 + * @return 结果 + */ + public int deleteTdExamnumByIds(String ids); + + /** + * 删除考试结果信息 + * + * @param id 考试结果主键 + * @return 结果 + */ + public int deleteTdExamnumById(Long id); +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdExamnumServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdExamnumServiceImpl.java new file mode 100644 index 0000000..b2ec5e4 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdExamnumServiceImpl.java @@ -0,0 +1,94 @@ +package com.ruoyi.system.service.impl; + +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.ruoyi.system.mapper.TdExamnumMapper; +import com.ruoyi.system.domain.TdExamnum; +import com.ruoyi.system.service.ITdExamnumService; +import com.ruoyi.common.core.text.Convert; + +/** + * 考试结果Service业务层处理 + * + * @author ruoyi + * @date 2024-04-10 + */ +@Service +public class TdExamnumServiceImpl implements ITdExamnumService +{ + @Autowired + private TdExamnumMapper tdExamnumMapper; + + /** + * 查询考试结果 + * + * @param id 考试结果主键 + * @return 考试结果 + */ + @Override + public TdExamnum selectTdExamnumById(Long id) + { + return tdExamnumMapper.selectTdExamnumById(id); + } + + /** + * 查询考试结果列表 + * + * @param tdExamnum 考试结果 + * @return 考试结果 + */ + @Override + public List selectTdExamnumList(TdExamnum tdExamnum) + { + return tdExamnumMapper.selectTdExamnumList(tdExamnum); + } + + /** + * 新增考试结果 + * + * @param tdExamnum 考试结果 + * @return 结果 + */ + @Override + public int insertTdExamnum(TdExamnum tdExamnum) + { + return tdExamnumMapper.insertTdExamnum(tdExamnum); + } + + /** + * 修改考试结果 + * + * @param tdExamnum 考试结果 + * @return 结果 + */ + @Override + public int updateTdExamnum(TdExamnum tdExamnum) + { + return tdExamnumMapper.updateTdExamnum(tdExamnum); + } + + /** + * 批量删除考试结果 + * + * @param ids 需要删除的考试结果主键 + * @return 结果 + */ + @Override + public int deleteTdExamnumByIds(String ids) + { + return tdExamnumMapper.deleteTdExamnumByIds(Convert.toStrArray(ids)); + } + + /** + * 删除考试结果信息 + * + * @param id 考试结果主键 + * @return 结果 + */ + @Override + public int deleteTdExamnumById(Long id) + { + return tdExamnumMapper.deleteTdExamnumById(id); + } +} diff --git a/ruoyi-system/src/main/resources/mapper/system/TdExamnumMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdExamnumMapper.xml new file mode 100644 index 0000000..70bc8af --- /dev/null +++ b/ruoyi-system/src/main/resources/mapper/system/TdExamnumMapper.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + select id, userName, examResult, startTime, endTime, dept, tyep from td_examnum + + + + + + + + insert into td_examnum + + userName, + examResult, + startTime, + endTime, + dept, + tyep, + + + #{userName}, + #{examResult}, + #{startTime}, + #{endTime}, + #{dept}, + #{tyep}, + + + + + update td_examnum + + userName = #{userName}, + examResult = #{examResult}, + startTime = #{startTime}, + endTime = #{endTime}, + dept = #{dept}, + tyep = #{tyep}, + + where id = #{id} + + + + delete from td_examnum where id = #{id} + + + + delete from td_examnum where id in + + #{id} + + + + \ No newline at end of file