fix:多余代码提交

pg_adapter
wangxy 8 months ago
parent 5e6906e313
commit 665257494c

@ -1,188 +0,0 @@
package com.ruoyi.web.controller.system.check;
import java.util.List;
import com.ruoyi.web.controller.manager.SysAreaManager;
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.TdCheck;
import com.ruoyi.system.service.ITdCheckService;
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;
import javax.annotation.Resource;
/**
* Controller
*
* @author ruoyi
* @date 2024-05-06
*/
@Controller
@RequestMapping("/system/check")
public class TdCheckController extends BaseController
{
private String prefix = "system/check";
@Autowired
private ITdCheckService tdCheckService;
@Resource
private SysAreaManager sysAreaManager;
@RequiresPermissions("system:check:view")
@GetMapping()
public String check()
{
return prefix + "/check";
}
/**
*
*/
@RequiresPermissions("system:check:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(TdCheck tdCheck)
{
startPage();
List<TdCheck> list = tdCheckService.selectTdCheckList(tdCheck);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:check:export")
@Log(title = "检查报告管理", businessType = BusinessType.EXPORT)
@PostMapping("/export")
@ResponseBody
public AjaxResult export(TdCheck tdCheck)
{
List<TdCheck> list = tdCheckService.selectTdCheckList(tdCheck);
list.forEach(tdCheck1 -> {
tdCheck1.setFramework(sysAreaManager.getAreaName(tdCheck1.getFramework()));
tdCheck1.setArea(sysAreaManager.getAreaName(tdCheck1.getArea()));
});
ExcelUtil<TdCheck> util = new ExcelUtil<TdCheck>(TdCheck.class);
return util.exportExcel(list, "检查报告管理数据");
}
/**
*
*/
@GetMapping("/add")
public String add(ModelMap mmap)
{
mmap.put("user", getSysUser());
return prefix + "/add";
}
/**
*
*/
@RequiresPermissions("system:check:add")
@Log(title = "检查报告管理", businessType = BusinessType.INSERT)
@PostMapping("/add")
@ResponseBody
public AjaxResult addSave(TdCheck tdCheck)
{
return toAjax(tdCheckService.insertTdCheck(tdCheck));
}
/**
*
*/
@RequiresPermissions("system:check:edit")
@GetMapping("/edit/{checkId}")
public String edit(@PathVariable("checkId") Long checkId, ModelMap mmap)
{
TdCheck tdCheck = tdCheckService.selectTdCheckByCheckId(checkId);
mmap.put("tdCheck", tdCheck);
return prefix + "/edit";
}
/**
*
*/
@RequiresPermissions("system:check:edit")
@Log(title = "检查报告管理", businessType = BusinessType.UPDATE)
@PostMapping("/edit")
@ResponseBody
public AjaxResult editSave(TdCheck tdCheck)
{
return toAjax(tdCheckService.updateTdCheck(tdCheck));
}
/**
*
*/
@RequiresPermissions("system:check:remove")
@Log(title = "检查报告管理", businessType = BusinessType.DELETE)
@PostMapping( "/remove")
@ResponseBody
public AjaxResult remove(String ids)
{
return toAjax(tdCheckService.deleteTdCheckByCheckIds(ids));
}
/**
*
*/
@RequiresPermissions("system:check:selfcheck")
@GetMapping("/selfcheck/{checkId}")
public String selfcheck(@PathVariable("checkId") Long checkId, ModelMap mmap)
{
TdCheck tdCheck = tdCheckService.selectTdCheckByCheckId(checkId);
mmap.put("tdCheck", tdCheck);
return prefix + "/selfcheck";
}
/**
*
*/
@RequiresPermissions("system:check:selfcheck")
@Log(title = "检查报告管理", businessType = BusinessType.CHECK)
@PostMapping("/selfcheck")
@ResponseBody
public AjaxResult selfcheckSave(TdCheck tdCheck)
{
return toAjax(tdCheckService.updateTdCheck(tdCheck));
}
/**
*
*/
@RequiresPermissions("system:check:detail")
@GetMapping("/detail/{checkId}")
public String detail(@PathVariable("checkId") Long checkId, ModelMap mmap)
{
TdCheck tdCheck = tdCheckService.selectTdCheckByCheckId(checkId);
mmap.put("tdCheck", tdCheck);
return prefix + "/detail";
}
/**
*
*/
@RequiresPermissions("system:check:print")
@GetMapping("/checkprint/{checkId}")
public String checkPrint(@PathVariable("checkId") Long checkId, ModelMap mmap)
{
TdCheck tdCheck = tdCheckService.selectTdCheckByCheckId(checkId);
mmap.put("tdCheck", tdCheck);
return prefix + "/checkprint";
}
}

@ -1,672 +0,0 @@
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_check
*
* @author ruoyi
* @date 2024-05-06
*/
public class TdCheck extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** id */
private Long checkId;
/** 人员 */
@Excel(name = "报告人员")
private String adduser;
/** 单位 */
@Excel(name = "单位")
private String depart;
public void setDepart(String depart) {
this.depart = depart;
}
/** 检查开始时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "检查开始时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date checkStartTime;
/** 检查结束时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "检查结束时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date checkEndTime;
/** 检查类型0.自检 1.保密局检查) */
@Excel(name = "检查类型", readConverterExp = "0=自检,1=保密局检查")
private String checkType;
/** 检查内容 */
@Excel(name = "检查内容")
private String checkContent;
/** 检查结果 */
@Excel(name = "检查结果")
private String checkResult;
/** 地址 */
@Excel(name = "地址")
private String address;
/** 部门结果 */
@Excel(name = "部门结果")
private String departreault;
/** 市州 */
@Excel(name = "所属市州")
private String framework;
/** 地区 */
@Excel(name = "所属区县")
private String area;
/** 检查状态 */
@Excel(name = "检查状态", readConverterExp = "0=通过,1=未通过,2=待检查")
private String checkState;
/** 名 */
@Excel(name = "名")
private String checkName;
/** 地址 */
@Excel(name = "地址")
private String checkAddress;
/** 人员检查 */
@Excel(name = "人员检查")
private String checkcontentry;
/** 人员状态 */
@Excel(name = "人员状态")
private String checkcontentryjt;
/** 文件检查 */
@Excel(name = "文件检查")
private String checkcontentrywj;
/** 文件状态 */
@Excel(name = "文件状态")
private String checkcontentrywjjt;
/** 密品检查 */
@Excel(name = "密品检查")
private String checkcontentrysb;
/** 密品状态 */
@Excel(name = "密品状态")
private String checkcontentrysbjt;
/** 管理制度检查 */
@Excel(name = "管理制度检查")
private String checkcontentryglzd;
/** 状态 */
@Excel(name = "状态")
private String checkcontentryglzdjt;
/** 泄密事件检查 */
@Excel(name = "泄密事件检查")
private String checkcontentryxmsj;
/** 状态 */
@Excel(name = "状态")
private String checkcontentryxmsjjt;
/** 其他内容检查 */
@Excel(name = "其他内容检查")
private String checkcontentryother;
/** 状态 */
@Excel(name = "状态")
private String checkcontentryxmsjotherjt;
/** 结果1 */
@Excel(name = "结果1")
private String checkresult1;
/** 结果2 */
@Excel(name = "结果2")
private String checkresult2;
/** 结果3 */
@Excel(name = "结果3")
private String checkresult3;
/** 结果4 */
@Excel(name = "结果4")
private String checkresult4;
/** 结果5 */
@Excel(name = "结果5")
private String checkresult5;
/** 结果6 */
@Excel(name = "结果6")
private String checkresult6;
/** 备注1 */
@Excel(name = "备注1")
private String remark1;
public String getAdduser() {
return adduser;
}
public void setAdduser(String adduser) {
this.adduser = adduser;
}
/** 备注2 */
@Excel(name = "备注2")
private String remark2;
/** 备注3 */
@Excel(name = "备注3")
private String remark3;
/** 备注4 */
@Excel(name = "备注4")
private String remark4;
/** 备注5 */
@Excel(name = "备注5")
private String remark5;
/** 备注6 */
@Excel(name = "备注6")
private String remark6;
/** 自检结果1 */
@Excel(name = "自检结果1")
private String checkownresult1;
/** 自检结果2 */
@Excel(name = "自检结果2")
private String checkownresult2;
/** 自检结果3 */
@Excel(name = "自检结果3")
private String checkownresult3;
/** 自检结果4 */
@Excel(name = "自检结果4")
private String checkownresult4;
/** 自检结果5 */
@Excel(name = "自检结果5")
private String checkownresult5;
/** 自检结果6 */
@Excel(name = "自检结果6")
private String checkownresult6;
/** 自检时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "自检时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date checkownresulttime;
public void setCheckId(Long checkId)
{
this.checkId = checkId;
}
public Long getCheckId()
{
return checkId;
}
public String getDepart()
{
return depart;
}
public void setCheckStartTime(Date checkStartTime)
{
this.checkStartTime = checkStartTime;
}
public Date getCheckStartTime()
{
return checkStartTime;
}
public void setCheckEndTime(Date checkEndTime)
{
this.checkEndTime = checkEndTime;
}
public Date getCheckEndTime()
{
return checkEndTime;
}
public void setCheckType(String checkType)
{
this.checkType = checkType;
}
public String getCheckType()
{
return checkType;
}
public void setCheckContent(String checkContent)
{
this.checkContent = checkContent;
}
public String getCheckContent()
{
return checkContent;
}
public void setCheckResult(String checkResult)
{
this.checkResult = checkResult;
}
public String getCheckResult()
{
return checkResult;
}
public void setAddress(String address)
{
this.address = address;
}
public String getAddress()
{
return address;
}
public void setDepartreault(String departreault)
{
this.departreault = departreault;
}
public String getDepartreault()
{
return departreault;
}
public void setArea(String area)
{
this.area = area;
}
public String getArea()
{
return area;
}
public void setFramework(String framework)
{
this.framework = framework;
}
public String getFramework()
{
return framework;
}
public void setCheckState(String checkState)
{
this.checkState = checkState;
}
public String getCheckState()
{
return checkState;
}
public void setCheckName(String checkName)
{
this.checkName = checkName;
}
public String getCheckName()
{
return checkName;
}
public void setCheckAddress(String checkAddress)
{
this.checkAddress = checkAddress;
}
public String getCheckAddress()
{
return checkAddress;
}
public void setCheckcontentry(String checkcontentry)
{
this.checkcontentry = checkcontentry;
}
public String getCheckcontentry()
{
return checkcontentry;
}
public void setCheckcontentryjt(String checkcontentryjt)
{
this.checkcontentryjt = checkcontentryjt;
}
public String getCheckcontentryjt()
{
return checkcontentryjt;
}
public void setCheckcontentrywj(String checkcontentrywj)
{
this.checkcontentrywj = checkcontentrywj;
}
public String getCheckcontentrywj()
{
return checkcontentrywj;
}
public void setCheckcontentrywjjt(String checkcontentrywjjt)
{
this.checkcontentrywjjt = checkcontentrywjjt;
}
public String getCheckcontentrywjjt()
{
return checkcontentrywjjt;
}
public void setCheckcontentrysb(String checkcontentrysb)
{
this.checkcontentrysb = checkcontentrysb;
}
public String getCheckcontentrysb()
{
return checkcontentrysb;
}
public void setCheckcontentrysbjt(String checkcontentrysbjt)
{
this.checkcontentrysbjt = checkcontentrysbjt;
}
public String getCheckcontentrysbjt()
{
return checkcontentrysbjt;
}
public void setCheckcontentryglzd(String checkcontentryglzd)
{
this.checkcontentryglzd = checkcontentryglzd;
}
public String getCheckcontentryglzd()
{
return checkcontentryglzd;
}
public void setCheckcontentryglzdjt(String checkcontentryglzdjt)
{
this.checkcontentryglzdjt = checkcontentryglzdjt;
}
public String getCheckcontentryglzdjt()
{
return checkcontentryglzdjt;
}
public void setCheckcontentryxmsj(String checkcontentryxmsj)
{
this.checkcontentryxmsj = checkcontentryxmsj;
}
public String getCheckcontentryxmsj()
{
return checkcontentryxmsj;
}
public void setCheckcontentryxmsjjt(String checkcontentryxmsjjt)
{
this.checkcontentryxmsjjt = checkcontentryxmsjjt;
}
public String getCheckcontentryxmsjjt()
{
return checkcontentryxmsjjt;
}
public void setCheckcontentryother(String checkcontentryother)
{
this.checkcontentryother = checkcontentryother;
}
public String getCheckcontentryother()
{
return checkcontentryother;
}
public void setCheckcontentryxmsjotherjt(String checkcontentryxmsjotherjt)
{
this.checkcontentryxmsjotherjt = checkcontentryxmsjotherjt;
}
public String getCheckcontentryxmsjotherjt()
{
return checkcontentryxmsjotherjt;
}
public void setCheckresult1(String checkresult1)
{
this.checkresult1 = checkresult1;
}
public String getCheckresult1()
{
return checkresult1;
}
public void setCheckresult2(String checkresult2)
{
this.checkresult2 = checkresult2;
}
public String getCheckresult2()
{
return checkresult2;
}
public void setCheckresult3(String checkresult3)
{
this.checkresult3 = checkresult3;
}
public String getCheckresult3()
{
return checkresult3;
}
public void setCheckresult4(String checkresult4)
{
this.checkresult4 = checkresult4;
}
public String getCheckresult4()
{
return checkresult4;
}
public void setCheckresult5(String checkresult5)
{
this.checkresult5 = checkresult5;
}
public String getCheckresult5()
{
return checkresult5;
}
public void setCheckresult6(String checkresult6)
{
this.checkresult6 = checkresult6;
}
public String getCheckresult6()
{
return checkresult6;
}
public void setRemark1(String remark1)
{
this.remark1 = remark1;
}
public String getRemark1()
{
return remark1;
}
public void setRemark2(String remark2)
{
this.remark2 = remark2;
}
public String getRemark2()
{
return remark2;
}
public void setRemark3(String remark3)
{
this.remark3 = remark3;
}
public String getRemark3()
{
return remark3;
}
public void setRemark4(String remark4)
{
this.remark4 = remark4;
}
public String getRemark4()
{
return remark4;
}
public void setRemark5(String remark5)
{
this.remark5 = remark5;
}
public String getRemark5()
{
return remark5;
}
public void setRemark6(String remark6)
{
this.remark6 = remark6;
}
public String getRemark6()
{
return remark6;
}
public void setCheckownresult1(String checkownresult1)
{
this.checkownresult1 = checkownresult1;
}
public String getCheckownresult1()
{
return checkownresult1;
}
public void setCheckownresult2(String checkownresult2)
{
this.checkownresult2 = checkownresult2;
}
public String getCheckownresult2()
{
return checkownresult2;
}
public void setCheckownresult3(String checkownresult3)
{
this.checkownresult3 = checkownresult3;
}
public String getCheckownresult3()
{
return checkownresult3;
}
public void setCheckownresult4(String checkownresult4)
{
this.checkownresult4 = checkownresult4;
}
public String getCheckownresult4()
{
return checkownresult4;
}
public void setCheckownresult5(String checkownresult5)
{
this.checkownresult5 = checkownresult5;
}
public String getCheckownresult5()
{
return checkownresult5;
}
public void setCheckownresult6(String checkownresult6)
{
this.checkownresult6 = checkownresult6;
}
public String getCheckownresult6()
{
return checkownresult6;
}
public void setCheckownresulttime(Date checkownresulttime)
{
this.checkownresulttime = checkownresulttime;
}
public Date getCheckownresulttime()
{
return checkownresulttime;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("checkId", getCheckId())
.append("adduser", getAdduser())
.append("depart", getDepart())
.append("checkStartTime", getCheckStartTime())
.append("checkEndTime", getCheckEndTime())
.append("checkType", getCheckType())
.append("checkContent", getCheckContent())
.append("checkResult", getCheckResult())
.append("address", getAddress())
.append("departreault", getDepartreault())
.append("area", getArea())
.append("framework", getFramework())
.append("checkState", getCheckState())
.append("checkName", getCheckName())
.append("checkAddress", getCheckAddress())
.append("checkcontentry", getCheckcontentry())
.append("checkcontentryjt", getCheckcontentryjt())
.append("checkcontentrywj", getCheckcontentrywj())
.append("checkcontentrywjjt", getCheckcontentrywjjt())
.append("checkcontentrysb", getCheckcontentrysb())
.append("checkcontentrysbjt", getCheckcontentrysbjt())
.append("checkcontentryglzd", getCheckcontentryglzd())
.append("checkcontentryglzdjt", getCheckcontentryglzdjt())
.append("checkcontentryxmsj", getCheckcontentryxmsj())
.append("checkcontentryxmsjjt", getCheckcontentryxmsjjt())
.append("checkcontentryother", getCheckcontentryother())
.append("checkcontentryxmsjotherjt", getCheckcontentryxmsjotherjt())
.append("checkresult1", getCheckresult1())
.append("checkresult2", getCheckresult2())
.append("checkresult3", getCheckresult3())
.append("checkresult4", getCheckresult4())
.append("checkresult5", getCheckresult5())
.append("checkresult6", getCheckresult6())
.append("remark1", getRemark1())
.append("remark2", getRemark2())
.append("remark3", getRemark3())
.append("remark4", getRemark4())
.append("remark5", getRemark5())
.append("remark6", getRemark6())
.append("checkownresult1", getCheckownresult1())
.append("checkownresult2", getCheckownresult2())
.append("checkownresult3", getCheckownresult3())
.append("checkownresult4", getCheckownresult4())
.append("checkownresult5", getCheckownresult5())
.append("checkownresult6", getCheckownresult6())
.append("checkownresulttime", getCheckownresulttime())
.toString();
}
}

@ -1,66 +0,0 @@
package com.ruoyi.system.mapper;
import java.util.List;
import com.ruoyi.system.domain.TdCheck;
import com.ruoyi.system.domain.count.CheckResultCountDTO;
import com.ruoyi.system.domain.count.CheckTypeCountDTO;
import com.ruoyi.system.domain.count.TrainCountDTO;
/**
* Mapper
*
* @author ruoyi
* @date 2024-05-06
*/
public interface TdCheckMapper
{
/**
*
*
* @param checkId
* @return
*/
public TdCheck selectTdCheckByCheckId(Long checkId);
/**
*
*
* @param tdCheck
* @return
*/
public List<TdCheck> selectTdCheckList(TdCheck tdCheck);
/**
*
*
* @param tdCheck
* @return
*/
public int insertTdCheck(TdCheck tdCheck);
/**
*
*
* @param tdCheck
* @return
*/
public int updateTdCheck(TdCheck tdCheck);
/**
*
*
* @param checkId
* @return
*/
public int deleteTdCheckByCheckId(Long checkId);
/**
*
*
* @param checkIds
* @return
*/
public int deleteTdCheckByCheckIds(String[] checkIds);
public CheckResultCountDTO selectResultCount();
public CheckTypeCountDTO selectTypeCount();
}

@ -1,67 +0,0 @@
package com.ruoyi.system.service;
import java.util.List;
import com.ruoyi.system.domain.TdCheck;
import com.ruoyi.system.domain.count.CheckResultCountDTO;
import com.ruoyi.system.domain.count.CheckTypeCountDTO;
import com.ruoyi.system.domain.count.PropertyStateCountDTO;
/**
* Service
*
* @author ruoyi
* @date 2024-05-06
*/
public interface ITdCheckService
{
/**
*
*
* @param checkId
* @return
*/
public TdCheck selectTdCheckByCheckId(Long checkId);
/**
*
*
* @param tdCheck
* @return
*/
public List<TdCheck> selectTdCheckList(TdCheck tdCheck);
/**
*
*
* @param tdCheck
* @return
*/
public int insertTdCheck(TdCheck tdCheck);
/**
*
*
* @param tdCheck
* @return
*/
public int updateTdCheck(TdCheck tdCheck);
/**
*
*
* @param checkIds
* @return
*/
public int deleteTdCheckByCheckIds(String checkIds);
/**
*
*
* @param checkId
* @return
*/
public int deleteTdCheckByCheckId(Long checkId);
public CheckResultCountDTO selectResultCount();
public CheckTypeCountDTO selectTypeCount();
}

@ -1,107 +0,0 @@
package com.ruoyi.system.service.impl;
import java.util.List;
import com.ruoyi.system.domain.count.CheckResultCountDTO;
import com.ruoyi.system.domain.count.CheckTypeCountDTO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.system.mapper.TdCheckMapper;
import com.ruoyi.system.domain.TdCheck;
import com.ruoyi.system.service.ITdCheckService;
import com.ruoyi.common.core.text.Convert;
/**
* Service
*
* @author ruoyi
* @date 2024-05-06
*/
@Service
public class TdCheckServiceImpl implements ITdCheckService
{
@Autowired
private TdCheckMapper tdCheckMapper;
/**
*
*
* @param checkId
* @return
*/
@Override
public TdCheck selectTdCheckByCheckId(Long checkId)
{
return tdCheckMapper.selectTdCheckByCheckId(checkId);
}
/**
*
*
* @param tdCheck
* @return
*/
@Override
public List<TdCheck> selectTdCheckList(TdCheck tdCheck)
{
return tdCheckMapper.selectTdCheckList(tdCheck);
}
/**
*
*
* @param tdCheck
* @return
*/
@Override
public int insertTdCheck(TdCheck tdCheck)
{
return tdCheckMapper.insertTdCheck(tdCheck);
}
/**
*
*
* @param tdCheck
* @return
*/
@Override
public int updateTdCheck(TdCheck tdCheck)
{
return tdCheckMapper.updateTdCheck(tdCheck);
}
/**
*
*
* @param checkIds
* @return
*/
@Override
public int deleteTdCheckByCheckIds(String checkIds)
{
return tdCheckMapper.deleteTdCheckByCheckIds(Convert.toStrArray(checkIds));
}
/**
*
*
* @param checkId
* @return
*/
@Override
public int deleteTdCheckByCheckId(Long checkId)
{
return tdCheckMapper.deleteTdCheckByCheckId(checkId);
}
@Override
public CheckResultCountDTO selectResultCount() {
return tdCheckMapper.selectResultCount();
}
@Override
public CheckTypeCountDTO selectTypeCount() {
return tdCheckMapper.selectTypeCount();
}
}

@ -1,292 +0,0 @@
<?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="com.ruoyi.system.mapper.TdCheckMapper">
<resultMap type="TdCheck" id="TdCheckResult">
<result property="checkId" column="check_id" />
<result property="adduser" column="adduser" />
<result property="depart" column="depart" />
<result property="checkStartTime" column="check_start_time" />
<result property="checkEndTime" column="check_end_time" />
<result property="checkType" column="check_type" />
<result property="checkContent" column="check_content" />
<result property="checkResult" column="check_result" />
<result property="address" column="address" />
<result property="departreault" column="departreault" />
<result property="area" column="area" />
<result property="framework" column="framework" />
<result property="checkState" column="check_state" />
<result property="checkName" column="check_name" />
<result property="checkAddress" column="check_address" />
<result property="checkcontentry" column="checkcontentry" />
<result property="checkcontentryjt" column="checkcontentryjt" />
<result property="checkcontentrywj" column="checkcontentrywj" />
<result property="checkcontentrywjjt" column="checkcontentrywjjt" />
<result property="checkcontentrysb" column="checkcontentrysb" />
<result property="checkcontentrysbjt" column="checkcontentrysbjt" />
<result property="checkcontentryglzd" column="checkcontentryglzd" />
<result property="checkcontentryglzdjt" column="checkcontentryglzdjt" />
<result property="checkcontentryxmsj" column="checkcontentryxmsj" />
<result property="checkcontentryxmsjjt" column="checkcontentryxmsjjt" />
<result property="checkcontentryother" column="checkcontentryother" />
<result property="checkcontentryxmsjotherjt" column="checkcontentryxmsjotherjt" />
<result property="checkresult1" column="checkresult1" />
<result property="checkresult2" column="checkresult2" />
<result property="checkresult3" column="checkresult3" />
<result property="checkresult4" column="checkresult4" />
<result property="checkresult5" column="checkresult5" />
<result property="checkresult6" column="checkresult6" />
<result property="remark1" column="remark1" />
<result property="remark2" column="remark2" />
<result property="remark3" column="remark3" />
<result property="remark4" column="remark4" />
<result property="remark5" column="remark5" />
<result property="remark6" column="remark6" />
<result property="checkownresult1" column="checkownresult1" />
<result property="checkownresult2" column="checkownresult2" />
<result property="checkownresult3" column="checkownresult3" />
<result property="checkownresult4" column="checkownresult4" />
<result property="checkownresult5" column="checkownresult5" />
<result property="checkownresult6" column="checkownresult6" />
<result property="checkownresulttime" column="checkownresulttime" />
</resultMap>
<sql id="selectTdCheckVo">
select check_id, adduser, depart, check_start_time, check_end_time, check_type, check_content, check_result, address, departreault, area, framework, check_state, check_name, check_address, checkcontentry, checkcontentryjt, checkcontentrywj, checkcontentrywjjt, checkcontentrysb, checkcontentrysbjt, checkcontentryglzd, checkcontentryglzdjt, checkcontentryxmsj, checkcontentryxmsjjt, checkcontentryother, checkcontentryxmsjotherjt, checkresult1, checkresult2, checkresult3, checkresult4, checkresult5, checkresult6, remark1, remark2, remark3, remark4, remark5, remark6, checkownresult1, checkownresult2, checkownresult3, checkownresult4, checkownresult5, checkownresult6, checkownresulttime from td_check
</sql>
<select id="selectTdCheckList" parameterType="TdCheck" resultMap="TdCheckResult">
<include refid="selectTdCheckVo"/>
<where>
<if test="adduser != null and adduser != ''"> and adduser = #{adduser}</if>
<if test="depart != null and depart != ''"> and depart = #{depart}</if>
<if test="checkStartTime != null "> and check_start_time = #{checkStartTime}</if>
<if test="checkEndTime != null "> and check_end_time = #{checkEndTime}</if>
<if test="checkType != null and checkType != ''"> and check_type = #{checkType}</if>
<if test="checkContent != null and checkContent != ''"> and check_content = #{checkContent}</if>
<if test="checkResult != null and checkResult != ''"> and check_result = #{checkResult}</if>
<if test="address != null and address != ''"> and address = #{address}</if>
<if test="departreault != null and departreault != ''"> and departreault = #{departreault}</if>
<if test="area != null and area != ''"> and area = #{area}</if>
<if test="framework != null and framework != ''"> and framework = #{framework}</if>
<if test="checkState != null and checkState != ''"> and check_state = #{checkState}</if>
<if test="checkName != null and checkName != ''"> and check_name = #{checkName}</if>
<if test="checkAddress != null and checkAddress != ''"> and check_address = #{checkAddress}</if>
<if test="checkcontentry != null and checkcontentry != ''"> and checkcontentry = #{checkcontentry}</if>
<if test="checkcontentryjt != null and checkcontentryjt != ''"> and checkcontentryjt = #{checkcontentryjt}</if>
<if test="checkcontentrywj != null and checkcontentrywj != ''"> and checkcontentrywj = #{checkcontentrywj}</if>
<if test="checkcontentrywjjt != null and checkcontentrywjjt != ''"> and checkcontentrywjjt = #{checkcontentrywjjt}</if>
<if test="checkcontentrysb != null and checkcontentrysb != ''"> and checkcontentrysb = #{checkcontentrysb}</if>
<if test="checkcontentrysbjt != null and checkcontentrysbjt != ''"> and checkcontentrysbjt = #{checkcontentrysbjt}</if>
<if test="checkcontentryglzd != null and checkcontentryglzd != ''"> and checkcontentryglzd = #{checkcontentryglzd}</if>
<if test="checkcontentryglzdjt != null and checkcontentryglzdjt != ''"> and checkcontentryglzdjt = #{checkcontentryglzdjt}</if>
<if test="checkcontentryxmsj != null and checkcontentryxmsj != ''"> and checkcontentryxmsj = #{checkcontentryxmsj}</if>
<if test="checkcontentryxmsjjt != null and checkcontentryxmsjjt != ''"> and checkcontentryxmsjjt = #{checkcontentryxmsjjt}</if>
<if test="checkcontentryother != null and checkcontentryother != ''"> and checkcontentryother = #{checkcontentryother}</if>
<if test="checkcontentryxmsjotherjt != null and checkcontentryxmsjotherjt != ''"> and checkcontentryxmsjotherjt = #{checkcontentryxmsjotherjt}</if>
<if test="checkresult1 != null and checkresult1 != ''"> and checkresult1 = #{checkresult1}</if>
<if test="checkresult2 != null and checkresult2 != ''"> and checkresult2 = #{checkresult2}</if>
<if test="checkresult3 != null and checkresult3 != ''"> and checkresult3 = #{checkresult3}</if>
<if test="checkresult4 != null and checkresult4 != ''"> and checkresult4 = #{checkresult4}</if>
<if test="checkresult5 != null and checkresult5 != ''"> and checkresult5 = #{checkresult5}</if>
<if test="checkresult6 != null and checkresult6 != ''"> and checkresult6 = #{checkresult6}</if>
<if test="remark1 != null and remark1 != ''"> and remark1 = #{remark1}</if>
<if test="remark2 != null and remark2 != ''"> and remark2 = #{remark2}</if>
<if test="remark3 != null and remark3 != ''"> and remark3 = #{remark3}</if>
<if test="remark4 != null and remark4 != ''"> and remark4 = #{remark4}</if>
<if test="remark5 != null and remark5 != ''"> and remark5 = #{remark5}</if>
<if test="remark6 != null and remark6 != ''"> and remark6 = #{remark6}</if>
<if test="checkownresult1 != null and checkownresult1 != ''"> and checkownresult1 = #{checkownresult1}</if>
<if test="checkownresult2 != null and checkownresult2 != ''"> and checkownresult2 = #{checkownresult2}</if>
<if test="checkownresult3 != null and checkownresult3 != ''"> and checkownresult3 = #{checkownresult3}</if>
<if test="checkownresult4 != null and checkownresult4 != ''"> and checkownresult4 = #{checkownresult4}</if>
<if test="checkownresult5 != null and checkownresult5 != ''"> and checkownresult5 = #{checkownresult5}</if>
<if test="checkownresult6 != null and checkownresult6 != ''"> and checkownresult6 = #{checkownresult6}</if>
<if test="checkownresulttime != null "> and checkownresulttime = #{checkownresulttime}</if>
</where>
</select>
<select id="selectTdCheckByCheckId" parameterType="Long" resultMap="TdCheckResult">
<include refid="selectTdCheckVo"/>
where check_id = #{checkId}
</select>
<insert id="insertTdCheck" parameterType="TdCheck" useGeneratedKeys="true" keyProperty="checkId">
insert into td_check
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="adduser != null">adduser,</if>
<if test="depart != null">depart,</if>
<if test="checkStartTime != null">check_start_time,</if>
<if test="checkEndTime != null">check_end_time,</if>
<if test="checkType != null">check_type,</if>
<if test="checkContent != null">check_content,</if>
<if test="checkResult != null">check_result,</if>
<if test="address != null">address,</if>
<if test="departreault != null">departreault,</if>
<if test="area != null">area,</if>
<if test="framework != null">framework,</if>
<if test="checkState != null">check_state,</if>
<if test="checkName != null">check_name,</if>
<if test="checkAddress != null">check_address,</if>
<if test="checkcontentry != null">checkcontentry,</if>
<if test="checkcontentryjt != null">checkcontentryjt,</if>
<if test="checkcontentrywj != null">checkcontentrywj,</if>
<if test="checkcontentrywjjt != null">checkcontentrywjjt,</if>
<if test="checkcontentrysb != null">checkcontentrysb,</if>
<if test="checkcontentrysbjt != null">checkcontentrysbjt,</if>
<if test="checkcontentryglzd != null">checkcontentryglzd,</if>
<if test="checkcontentryglzdjt != null">checkcontentryglzdjt,</if>
<if test="checkcontentryxmsj != null">checkcontentryxmsj,</if>
<if test="checkcontentryxmsjjt != null">checkcontentryxmsjjt,</if>
<if test="checkcontentryother != null">checkcontentryother,</if>
<if test="checkcontentryxmsjotherjt != null">checkcontentryxmsjotherjt,</if>
<if test="checkresult1 != null">checkresult1,</if>
<if test="checkresult2 != null">checkresult2,</if>
<if test="checkresult3 != null">checkresult3,</if>
<if test="checkresult4 != null">checkresult4,</if>
<if test="checkresult5 != null">checkresult5,</if>
<if test="checkresult6 != null">checkresult6,</if>
<if test="remark1 != null">remark1,</if>
<if test="remark2 != null">remark2,</if>
<if test="remark3 != null">remark3,</if>
<if test="remark4 != null">remark4,</if>
<if test="remark5 != null">remark5,</if>
<if test="remark6 != null">remark6,</if>
<if test="checkownresult1 != null">checkownresult1,</if>
<if test="checkownresult2 != null">checkownresult2,</if>
<if test="checkownresult3 != null">checkownresult3,</if>
<if test="checkownresult4 != null">checkownresult4,</if>
<if test="checkownresult5 != null">checkownresult5,</if>
<if test="checkownresult6 != null">checkownresult6,</if>
<if test="checkownresulttime != null">checkownresulttime,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="adduser != null">#{adduser},</if>
<if test="depart != null">#{depart},</if>
<if test="checkStartTime != null">#{checkStartTime},</if>
<if test="checkEndTime != null">#{checkEndTime},</if>
<if test="checkType != null">#{checkType},</if>
<if test="checkContent != null">#{checkContent},</if>
<if test="checkResult != null">#{checkResult},</if>
<if test="address != null">#{address},</if>
<if test="departreault != null">#{departreault},</if>
<if test="area != null">#{area},</if>
<if test="framework != null">#{framework},</if>
<if test="checkState != null">#{checkState},</if>
<if test="checkName != null">#{checkName},</if>
<if test="checkAddress != null">#{checkAddress},</if>
<if test="checkcontentry != null">#{checkcontentry},</if>
<if test="checkcontentryjt != null">#{checkcontentryjt},</if>
<if test="checkcontentrywj != null">#{checkcontentrywj},</if>
<if test="checkcontentrywjjt != null">#{checkcontentrywjjt},</if>
<if test="checkcontentrysb != null">#{checkcontentrysb},</if>
<if test="checkcontentrysbjt != null">#{checkcontentrysbjt},</if>
<if test="checkcontentryglzd != null">#{checkcontentryglzd},</if>
<if test="checkcontentryglzdjt != null">#{checkcontentryglzdjt},</if>
<if test="checkcontentryxmsj != null">#{checkcontentryxmsj},</if>
<if test="checkcontentryxmsjjt != null">#{checkcontentryxmsjjt},</if>
<if test="checkcontentryother != null">#{checkcontentryother},</if>
<if test="checkcontentryxmsjotherjt != null">#{checkcontentryxmsjotherjt},</if>
<if test="checkresult1 != null">#{checkresult1},</if>
<if test="checkresult2 != null">#{checkresult2},</if>
<if test="checkresult3 != null">#{checkresult3},</if>
<if test="checkresult4 != null">#{checkresult4},</if>
<if test="checkresult5 != null">#{checkresult5},</if>
<if test="checkresult6 != null">#{checkresult6},</if>
<if test="remark1 != null">#{remark1},</if>
<if test="remark2 != null">#{remark2},</if>
<if test="remark3 != null">#{remark3},</if>
<if test="remark4 != null">#{remark4},</if>
<if test="remark5 != null">#{remark5},</if>
<if test="remark6 != null">#{remark6},</if>
<if test="checkownresult1 != null">#{checkownresult1},</if>
<if test="checkownresult2 != null">#{checkownresult2},</if>
<if test="checkownresult3 != null">#{checkownresult3},</if>
<if test="checkownresult4 != null">#{checkownresult4},</if>
<if test="checkownresult5 != null">#{checkownresult5},</if>
<if test="checkownresult6 != null">#{checkownresult6},</if>
<if test="checkownresulttime != null">#{checkownresulttime},</if>
</trim>
</insert>
<update id="updateTdCheck" parameterType="TdCheck">
update td_check
<trim prefix="SET" suffixOverrides=",">
<if test="adduser != null">adduser = #{adduser},</if>
<if test="depart != null">depart = #{depart},</if>
<if test="checkStartTime != null">check_start_time = #{checkStartTime},</if>
<if test="checkEndTime != null">check_end_time = #{checkEndTime},</if>
<if test="checkType != null">check_type = #{checkType},</if>
<if test="checkContent != null">check_content = #{checkContent},</if>
<if test="checkResult != null">check_result = #{checkResult},</if>
<if test="address != null">address = #{address},</if>
<if test="departreault != null">departreault = #{departreault},</if>
<if test="area != null">area = #{area},</if>
<if test="framework != null">framework = #{framework},</if>
<if test="checkState != null">check_state = #{checkState},</if>
<if test="checkName != null">check_name = #{checkName},</if>
<if test="checkAddress != null">check_address = #{checkAddress},</if>
<if test="checkcontentry != null">checkcontentry = #{checkcontentry},</if>
<if test="checkcontentryjt != null">checkcontentryjt = #{checkcontentryjt},</if>
<if test="checkcontentrywj != null">checkcontentrywj = #{checkcontentrywj},</if>
<if test="checkcontentrywjjt != null">checkcontentrywjjt = #{checkcontentrywjjt},</if>
<if test="checkcontentrysb != null">checkcontentrysb = #{checkcontentrysb},</if>
<if test="checkcontentrysbjt != null">checkcontentrysbjt = #{checkcontentrysbjt},</if>
<if test="checkcontentryglzd != null">checkcontentryglzd = #{checkcontentryglzd},</if>
<if test="checkcontentryglzdjt != null">checkcontentryglzdjt = #{checkcontentryglzdjt},</if>
<if test="checkcontentryxmsj != null">checkcontentryxmsj = #{checkcontentryxmsj},</if>
<if test="checkcontentryxmsjjt != null">checkcontentryxmsjjt = #{checkcontentryxmsjjt},</if>
<if test="checkcontentryother != null">checkcontentryother = #{checkcontentryother},</if>
<if test="checkcontentryxmsjotherjt != null">checkcontentryxmsjotherjt = #{checkcontentryxmsjotherjt},</if>
<if test="checkresult1 != null">checkresult1 = #{checkresult1},</if>
<if test="checkresult2 != null">checkresult2 = #{checkresult2},</if>
<if test="checkresult3 != null">checkresult3 = #{checkresult3},</if>
<if test="checkresult4 != null">checkresult4 = #{checkresult4},</if>
<if test="checkresult5 != null">checkresult5 = #{checkresult5},</if>
<if test="checkresult6 != null">checkresult6 = #{checkresult6},</if>
<if test="remark1 != null">remark1 = #{remark1},</if>
<if test="remark2 != null">remark2 = #{remark2},</if>
<if test="remark3 != null">remark3 = #{remark3},</if>
<if test="remark4 != null">remark4 = #{remark4},</if>
<if test="remark5 != null">remark5 = #{remark5},</if>
<if test="remark6 != null">remark6 = #{remark6},</if>
<if test="checkownresult1 != null">checkownresult1 = #{checkownresult1},</if>
<if test="checkownresult2 != null">checkownresult2 = #{checkownresult2},</if>
<if test="checkownresult3 != null">checkownresult3 = #{checkownresult3},</if>
<if test="checkownresult4 != null">checkownresult4 = #{checkownresult4},</if>
<if test="checkownresult5 != null">checkownresult5 = #{checkownresult5},</if>
<if test="checkownresult6 != null">checkownresult6 = #{checkownresult6},</if>
<if test="checkownresulttime != null">checkownresulttime = #{checkownresulttime},</if>
</trim>
where check_id = #{checkId}
</update>
<delete id="deleteTdCheckByCheckId" parameterType="Long">
delete from td_check where check_id = #{checkId}
</delete>
<delete id="deleteTdCheckByCheckIds" parameterType="String">
delete from td_check where check_id in
<foreach item="checkId" collection="array" open="(" separator="," close=")">
#{checkId}
</foreach>
</delete>
<select id="selectTypeCount" resultType="com.ruoyi.system.domain.count.CheckTypeCountDTO">
SELECT
SUM (CASE WHEN check_type = 0 THEN 1 ELSE 0 END) AS zxjc,
SUM (CASE WHEN check_type = 1 THEN 1 ELSE 0 END) AS bmjjc
from td_check
</select>
<select id="selectResultCount" resultType="com.ruoyi.system.domain.count.CheckResultCountDTO">
SELECT
SUM (CASE WHEN check_state = 0 THEN 1 ELSE 0 END) AS tg,
SUM (CASE WHEN check_state = 1 THEN 1 ELSE 0 END) AS wtg,
SUM (CASE WHEN check_state = 2 THEN 1 ELSE 0 END) AS djc
from td_check
</select>
</mapper>
Loading…
Cancel
Save