巡检报表4
parent
c75289012a
commit
e5adc98b74
@ -1,11 +0,0 @@
|
||||
#for test only!
|
||||
#Fri Feb 02 11:11:00 CST 2024
|
||||
jco.destination.pool_capacity=true
|
||||
jco.client.lang=zh
|
||||
jco.client.ashost=192.168.0.130
|
||||
jco.client.saprouter=
|
||||
jco.client.user=MES
|
||||
jco.client.sysnr=0
|
||||
jco.destination.peak_limit=20
|
||||
jco.client.passwd=123456
|
||||
jco.client.client=800
|
@ -0,0 +1,107 @@
|
||||
package com.op.quality.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.op.common.core.utils.poi.ExcelUtil;
|
||||
import com.op.quality.domain.QcDefectTypeClass;
|
||||
import com.op.quality.service.IQcDefectTypeClassService;
|
||||
import com.op.system.api.domain.SysDictData;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.op.common.log.annotation.Log;
|
||||
import com.op.common.log.enums.BusinessType;
|
||||
import com.op.common.security.annotation.RequiresPermissions;
|
||||
import com.op.common.core.web.controller.BaseController;
|
||||
import com.op.common.core.web.domain.AjaxResult;
|
||||
import com.op.common.core.web.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 故障类型-缺陷描述分类Controller
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/defectClass")
|
||||
public class QcDefectTypeClassController extends BaseController {
|
||||
@Autowired
|
||||
private IQcDefectTypeClassService qcDefectTypeClassService;
|
||||
|
||||
/**
|
||||
* 查询故障类型-缺陷描述分类列表
|
||||
*/
|
||||
@RequiresPermissions("system:class:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(QcDefectTypeClass qcDefectTypeClass) {
|
||||
startPage();
|
||||
List<QcDefectTypeClass> list = qcDefectTypeClassService.selectQcDefectTypeClassList(qcDefectTypeClass);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出故障类型-缺陷描述分类列表
|
||||
*/
|
||||
@RequiresPermissions("system:class:export")
|
||||
@Log(title = "故障类型-缺陷描述分类", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, QcDefectTypeClass qcDefectTypeClass) {
|
||||
List<QcDefectTypeClass> list = qcDefectTypeClassService.selectQcDefectTypeClassList(qcDefectTypeClass);
|
||||
ExcelUtil<QcDefectTypeClass> util = new ExcelUtil<QcDefectTypeClass>(QcDefectTypeClass. class);
|
||||
util.exportExcel(response, list, "故障类型-缺陷描述分类数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取故障类型-缺陷描述分类详细信息
|
||||
*/
|
||||
@RequiresPermissions("system:class:query")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") String id) {
|
||||
return success(qcDefectTypeClassService.selectQcDefectTypeClassById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增故障类型-缺陷描述分类
|
||||
*/
|
||||
@RequiresPermissions("system:class:add")
|
||||
@Log(title = "故障类型-缺陷描述分类", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody QcDefectTypeClass qcDefectTypeClass) {
|
||||
return toAjax(qcDefectTypeClassService.insertQcDefectTypeClass(qcDefectTypeClass));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改故障类型-缺陷描述分类
|
||||
*/
|
||||
@RequiresPermissions("system:class:edit")
|
||||
@Log(title = "故障类型-缺陷描述分类", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody QcDefectTypeClass qcDefectTypeClass) {
|
||||
return toAjax(qcDefectTypeClassService.updateQcDefectTypeClass(qcDefectTypeClass));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除故障类型-缺陷描述分类
|
||||
*/
|
||||
@RequiresPermissions("system:class:remove")
|
||||
@Log(title = "故障类型-缺陷描述分类", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable String[] ids) {
|
||||
return toAjax(qcDefectTypeClassService.deleteQcDefectTypeClassByIds(ids));
|
||||
}
|
||||
|
||||
@GetMapping("/getClassInfoList")
|
||||
@DS("#header.poolName")
|
||||
public AjaxResult getClassInfoList(QcDefectTypeClass qcDefectTypeClass) {
|
||||
List<QcDefectTypeClass> list = qcDefectTypeClassService.getClassInfoList(qcDefectTypeClass);
|
||||
return success(list);
|
||||
}
|
||||
}
|
@ -0,0 +1,143 @@
|
||||
package com.op.quality.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 故障类型-缺陷描述分类对象 qc_defect_type_class
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
public class QcDefectTypeClass extends BaseEntity {
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/** 主键 */
|
||||
private String id;
|
||||
|
||||
/** 不良类型id */
|
||||
@Excel(name = "不良类型id")
|
||||
private String defectId;
|
||||
|
||||
/** 不良类型编码 */
|
||||
@Excel(name = "不良类型编码")
|
||||
private String defectCode;
|
||||
|
||||
/** 缺陷名称 */
|
||||
@Excel(name = "缺陷名称")
|
||||
private String className;
|
||||
|
||||
/** 工厂编码 */
|
||||
@Excel(name = "工厂编码")
|
||||
private String factoryCode;
|
||||
|
||||
/** 备用字段1 */
|
||||
@Excel(name = "备用字段1")
|
||||
private String attr1;
|
||||
|
||||
/** 备用字段2 */
|
||||
@Excel(name = "备用字段2")
|
||||
private String attr2;
|
||||
|
||||
/** 备用字段3 */
|
||||
@Excel(name = "备用字段3")
|
||||
private String attr3;
|
||||
|
||||
/** 删除标志 */
|
||||
private String delFlag;
|
||||
private String sort;
|
||||
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public void setId(String id){
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getId(){
|
||||
return id;
|
||||
}
|
||||
public void setDefectId(String defectId){
|
||||
this.defectId = defectId;
|
||||
}
|
||||
|
||||
public String getDefectId(){
|
||||
return defectId;
|
||||
}
|
||||
public void setDefectCode(String defectCode){
|
||||
this.defectCode = defectCode;
|
||||
}
|
||||
|
||||
public String getDefectCode(){
|
||||
return defectCode;
|
||||
}
|
||||
public void setClassName(String className){
|
||||
this.className = className;
|
||||
}
|
||||
|
||||
public String getClassName(){
|
||||
return className;
|
||||
}
|
||||
public void setFactoryCode(String factoryCode){
|
||||
this.factoryCode = factoryCode;
|
||||
}
|
||||
|
||||
public String getFactoryCode(){
|
||||
return factoryCode;
|
||||
}
|
||||
public void setAttr1(String attr1){
|
||||
this.attr1 = attr1;
|
||||
}
|
||||
|
||||
public String getAttr1(){
|
||||
return attr1;
|
||||
}
|
||||
public void setAttr2(String attr2){
|
||||
this.attr2 = attr2;
|
||||
}
|
||||
|
||||
public String getAttr2(){
|
||||
return attr2;
|
||||
}
|
||||
public void setAttr3(String attr3){
|
||||
this.attr3 = attr3;
|
||||
}
|
||||
|
||||
public String getAttr3(){
|
||||
return attr3;
|
||||
}
|
||||
public void setDelFlag(String delFlag){
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public String getDelFlag(){
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString(){
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id",getId())
|
||||
.append("defectId",getDefectId())
|
||||
.append("defectCode",getDefectCode())
|
||||
.append("className",getClassName())
|
||||
.append("remark",getRemark())
|
||||
.append("factoryCode",getFactoryCode())
|
||||
.append("attr1",getAttr1())
|
||||
.append("attr2",getAttr2())
|
||||
.append("attr3",getAttr3())
|
||||
.append("delFlag",getDelFlag())
|
||||
.append("createBy",getCreateBy())
|
||||
.append("createTime",getCreateTime())
|
||||
.append("updateBy",getUpdateBy())
|
||||
.append("updateTime",getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
package com.op.quality.mapper;
|
||||
|
||||
import com.op.quality.domain.QcDefectTypeClass;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* 故障类型-缺陷描述分类Mapper接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
public interface QcDefectTypeClassMapper {
|
||||
/**
|
||||
* 查询故障类型-缺陷描述分类
|
||||
*
|
||||
* @param id 故障类型-缺陷描述分类主键
|
||||
* @return 故障类型-缺陷描述分类
|
||||
*/
|
||||
public QcDefectTypeClass selectQcDefectTypeClassById(String id);
|
||||
|
||||
/**
|
||||
* 查询故障类型-缺陷描述分类列表
|
||||
*
|
||||
* @param qcDefectTypeClass 故障类型-缺陷描述分类
|
||||
* @return 故障类型-缺陷描述分类集合
|
||||
*/
|
||||
public List<QcDefectTypeClass> selectQcDefectTypeClassList(QcDefectTypeClass qcDefectTypeClass);
|
||||
|
||||
/**
|
||||
* 新增故障类型-缺陷描述分类
|
||||
*
|
||||
* @param qcDefectTypeClass 故障类型-缺陷描述分类
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertQcDefectTypeClass(QcDefectTypeClass qcDefectTypeClass);
|
||||
|
||||
/**
|
||||
* 修改故障类型-缺陷描述分类
|
||||
*
|
||||
* @param qcDefectTypeClass 故障类型-缺陷描述分类
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateQcDefectTypeClass(QcDefectTypeClass qcDefectTypeClass);
|
||||
|
||||
/**
|
||||
* 删除故障类型-缺陷描述分类
|
||||
*
|
||||
* @param id 故障类型-缺陷描述分类主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteQcDefectTypeClassById(String id);
|
||||
|
||||
/**
|
||||
* 批量删除故障类型-缺陷描述分类
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteQcDefectTypeClassByIds(String[] ids);
|
||||
|
||||
List<QcDefectTypeClass> getClassInfoList(QcDefectTypeClass qcDefectTypeClass);
|
||||
}
|
@ -0,0 +1,65 @@
|
||||
package com.op.quality.service;
|
||||
|
||||
import com.op.quality.domain.QcDefectTypeClass;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 故障类型-缺陷描述分类Service接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
public interface IQcDefectTypeClassService {
|
||||
/**
|
||||
* 查询故障类型-缺陷描述分类
|
||||
*
|
||||
* @param id 故障类型-缺陷描述分类主键
|
||||
* @return 故障类型-缺陷描述分类
|
||||
*/
|
||||
public QcDefectTypeClass selectQcDefectTypeClassById(String id);
|
||||
|
||||
/**
|
||||
* 查询故障类型-缺陷描述分类列表
|
||||
*
|
||||
* @param qcDefectTypeClass 故障类型-缺陷描述分类
|
||||
* @return 故障类型-缺陷描述分类集合
|
||||
*/
|
||||
public List<QcDefectTypeClass> selectQcDefectTypeClassList(QcDefectTypeClass qcDefectTypeClass);
|
||||
|
||||
/**
|
||||
* 新增故障类型-缺陷描述分类
|
||||
*
|
||||
* @param qcDefectTypeClass 故障类型-缺陷描述分类
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertQcDefectTypeClass(QcDefectTypeClass qcDefectTypeClass);
|
||||
|
||||
/**
|
||||
* 修改故障类型-缺陷描述分类
|
||||
*
|
||||
* @param qcDefectTypeClass 故障类型-缺陷描述分类
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateQcDefectTypeClass(QcDefectTypeClass qcDefectTypeClass);
|
||||
|
||||
/**
|
||||
* 批量删除故障类型-缺陷描述分类
|
||||
*
|
||||
* @param ids 需要删除的故障类型-缺陷描述分类主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteQcDefectTypeClassByIds(String[] ids);
|
||||
|
||||
/**
|
||||
* 删除故障类型-缺陷描述分类信息
|
||||
*
|
||||
* @param id 故障类型-缺陷描述分类主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteQcDefectTypeClassById(String id);
|
||||
|
||||
List<QcDefectTypeClass> getClassInfoList(QcDefectTypeClass qcDefectTypeClass);
|
||||
}
|
@ -0,0 +1,111 @@
|
||||
package com.op.quality.service.impl;
|
||||
|
||||
import java.security.Security;
|
||||
import java.util.List;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.op.common.core.utils.DateUtils;
|
||||
import com.op.common.core.utils.uuid.IdUtils;
|
||||
import com.op.common.security.utils.SecurityUtils;
|
||||
import com.op.quality.domain.QcDefectTypeClass;
|
||||
import com.op.quality.mapper.QcDefectTypeClassMapper;
|
||||
import com.op.quality.service.IQcDefectTypeClassService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
|
||||
/**
|
||||
* 故障类型-缺陷描述分类Service业务层处理
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-08-20
|
||||
*/
|
||||
@Service
|
||||
public class QcDefectTypeClassServiceImpl implements IQcDefectTypeClassService {
|
||||
@Autowired
|
||||
private QcDefectTypeClassMapper qcDefectTypeClassMapper;
|
||||
|
||||
/**
|
||||
* 查询故障类型-缺陷描述分类
|
||||
*
|
||||
* @param id 故障类型-缺陷描述分类主键
|
||||
* @return 故障类型-缺陷描述分类
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public QcDefectTypeClass selectQcDefectTypeClassById(String id) {
|
||||
return qcDefectTypeClassMapper.selectQcDefectTypeClassById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询故障类型-缺陷描述分类列表
|
||||
*
|
||||
* @param qcDefectTypeClass 故障类型-缺陷描述分类
|
||||
* @return 故障类型-缺陷描述分类
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<QcDefectTypeClass> selectQcDefectTypeClassList(QcDefectTypeClass qcDefectTypeClass) {
|
||||
return qcDefectTypeClassMapper.selectQcDefectTypeClassList(qcDefectTypeClass);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增故障类型-缺陷描述分类
|
||||
*
|
||||
* @param qcDefectTypeClass 故障类型-缺陷描述分类
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertQcDefectTypeClass(QcDefectTypeClass qcDefectTypeClass) {
|
||||
qcDefectTypeClass.setCreateTime(DateUtils.getNowDate());
|
||||
qcDefectTypeClass.setId(IdUtils.fastSimpleUUID());
|
||||
qcDefectTypeClass.setCreateBy(SecurityUtils.getUsername());
|
||||
return qcDefectTypeClassMapper.insertQcDefectTypeClass(qcDefectTypeClass);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改故障类型-缺陷描述分类
|
||||
*
|
||||
* @param qcDefectTypeClass 故障类型-缺陷描述分类
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateQcDefectTypeClass(QcDefectTypeClass qcDefectTypeClass) {
|
||||
qcDefectTypeClass.setUpdateTime(DateUtils.getNowDate());
|
||||
qcDefectTypeClass.setUpdateBy(SecurityUtils.getUsername());
|
||||
return qcDefectTypeClassMapper.updateQcDefectTypeClass(qcDefectTypeClass);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除故障类型-缺陷描述分类
|
||||
*
|
||||
* @param ids 需要删除的故障类型-缺陷描述分类主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteQcDefectTypeClassByIds(String[] ids) {
|
||||
return qcDefectTypeClassMapper.deleteQcDefectTypeClassByIds(ids);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除故障类型-缺陷描述分类信息
|
||||
*
|
||||
* @param id 故障类型-缺陷描述分类主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteQcDefectTypeClassById(String id) {
|
||||
return qcDefectTypeClassMapper.deleteQcDefectTypeClassById(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<QcDefectTypeClass> getClassInfoList(QcDefectTypeClass qcDefectTypeClass) {
|
||||
return qcDefectTypeClassMapper.getClassInfoList(qcDefectTypeClass);
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,194 @@
|
||||
<?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.op.quality.mapper.QcDefectTypeClassMapper">
|
||||
|
||||
<resultMap type="QcDefectTypeClass" id="QcDefectTypeClassResult">
|
||||
<result property="id" column="id"/>
|
||||
<result property="defectId" column="defect_id"/>
|
||||
<result property="defectCode" column="defect_code"/>
|
||||
<result property="className" column="class_name"/>
|
||||
<result property="remark" column="remark"/>
|
||||
<result property="factoryCode" column="factory_code"/>
|
||||
<result property="attr1" column="attr1"/>
|
||||
<result property="attr2" column="attr2"/>
|
||||
<result property="attr3" column="attr3"/>
|
||||
<result property="delFlag" column="del_flag"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
<result property="updateTime" column="update_time"/>
|
||||
<result property="sort" column="sort"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectQcDefectTypeClassVo">
|
||||
select id, defect_id, defect_code, class_name, remark, factory_code, attr1,
|
||||
attr2, attr3, del_flag, create_by, create_time, update_by, update_time ,sort
|
||||
from qc_defect_type_class
|
||||
</sql>
|
||||
|
||||
<select id="selectQcDefectTypeClassList" parameterType="QcDefectTypeClass" resultMap="QcDefectTypeClassResult">
|
||||
<include refid="selectQcDefectTypeClassVo"/>
|
||||
<where>
|
||||
<if test="defectId != null and defectId != ''">
|
||||
and defect_id = #{defectId}
|
||||
</if>
|
||||
<if test="defectCode != null and defectCode != ''">
|
||||
and defect_code = #{defectCode}
|
||||
</if>
|
||||
<if test="className != null and className != ''">
|
||||
and class_name like concat('%', #{className}, '%')
|
||||
</if>
|
||||
<if test="factoryCode != null and factoryCode != ''">
|
||||
and factory_code = #{factoryCode}
|
||||
</if>
|
||||
<if test="attr1 != null and attr1 != ''">
|
||||
and attr1 = #{attr1}
|
||||
</if>
|
||||
<if test="attr2 != null and attr2 != ''">
|
||||
and attr2 = #{attr2}
|
||||
</if>
|
||||
<if test="attr3 != null and attr3 != ''">
|
||||
and attr3 = #{attr3}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectQcDefectTypeClassById" parameterType="String"
|
||||
resultMap="QcDefectTypeClassResult">
|
||||
<include refid="selectQcDefectTypeClassVo"/>
|
||||
where id = #{id}
|
||||
</select>
|
||||
<select id="getClassInfoList" resultType="com.op.quality.domain.QcDefectTypeClass">
|
||||
select id,
|
||||
class_name className
|
||||
from qc_defect_type_class
|
||||
where defect_code = #{defectCode}
|
||||
and del_flag = '0'
|
||||
order by sort
|
||||
</select>
|
||||
|
||||
<insert id="insertQcDefectTypeClass" parameterType="QcDefectTypeClass">
|
||||
insert into qc_defect_type_class
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">id,
|
||||
</if>
|
||||
<if test="defectId != null and defectId != ''">defect_id,
|
||||
</if>
|
||||
<if test="defectCode != null and defectCode != ''">defect_code,
|
||||
</if>
|
||||
<if test="className != null">class_name,
|
||||
</if>
|
||||
<if test="remark != null">remark,
|
||||
</if>
|
||||
<if test="factoryCode != null and factoryCode != ''">factory_code,
|
||||
</if>
|
||||
<if test="attr1 != null">attr1,
|
||||
</if>
|
||||
<if test="attr2 != null">attr2,
|
||||
</if>
|
||||
<if test="attr3 != null">attr3,
|
||||
</if>
|
||||
<if test="delFlag != null and delFlag != ''">del_flag,
|
||||
</if>
|
||||
<if test="createBy != null and createBy != ''">create_by,
|
||||
</if>
|
||||
<if test="createTime != null">create_time,
|
||||
</if>
|
||||
<if test="updateBy != null and updateBy != ''">update_by,
|
||||
</if>
|
||||
<if test="updateTime != null">update_time,
|
||||
</if>
|
||||
<if test="sort != null">sort,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">#{id},
|
||||
</if>
|
||||
<if test="defectId != null and defectId != ''">#{defectId},
|
||||
</if>
|
||||
<if test="defectCode != null and defectCode != ''">#{defectCode},
|
||||
</if>
|
||||
<if test="className != null">#{className},
|
||||
</if>
|
||||
<if test="remark != null">#{remark},
|
||||
</if>
|
||||
<if test="factoryCode != null and factoryCode != ''">#{factoryCode},
|
||||
</if>
|
||||
<if test="attr1 != null">#{attr1},
|
||||
</if>
|
||||
<if test="attr2 != null">#{attr2},
|
||||
</if>
|
||||
<if test="attr3 != null">#{attr3},
|
||||
</if>
|
||||
<if test="delFlag != null and delFlag != ''">#{delFlag},
|
||||
</if>
|
||||
<if test="createBy != null and createBy != ''">#{createBy},
|
||||
</if>
|
||||
<if test="createTime != null">#{createTime},
|
||||
</if>
|
||||
<if test="updateBy != null and updateBy != ''">#{updateBy},
|
||||
</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="sort != null">#{sort},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateQcDefectTypeClass" parameterType="QcDefectTypeClass">
|
||||
update qc_defect_type_class
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="defectId != null and defectId != ''">defect_id =
|
||||
#{defectId},
|
||||
</if>
|
||||
<if test="defectCode != null and defectCode != ''">defect_code =
|
||||
#{defectCode},
|
||||
</if>
|
||||
<if test="className != null">class_name =
|
||||
#{className},
|
||||
</if>
|
||||
<if test="remark != null">remark =
|
||||
#{remark},
|
||||
</if>
|
||||
<if test="factoryCode != null and factoryCode != ''">factory_code =
|
||||
#{factoryCode},
|
||||
</if>
|
||||
<if test="attr1 != null">attr1 =
|
||||
#{attr1},
|
||||
</if>
|
||||
<if test="attr2 != null">attr2 =
|
||||
#{attr2},
|
||||
</if>
|
||||
<if test="attr3 != null">attr3 =
|
||||
#{attr3},
|
||||
</if>
|
||||
<if test="delFlag != null and delFlag != ''">del_flag =
|
||||
#{delFlag},
|
||||
</if>
|
||||
<if test="createBy != null and createBy != ''">create_by =
|
||||
#{createBy},
|
||||
</if>
|
||||
<if test="createTime != null">create_time =
|
||||
#{createTime},
|
||||
</if>
|
||||
<if test="updateBy != null and updateBy != ''">update_by =
|
||||
#{updateBy},
|
||||
</if>
|
||||
<if test="updateTime != null">update_time =
|
||||
#{updateTime},
|
||||
</if>
|
||||
<if test="sort != null">sort = #{sort},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteQcDefectTypeClassById" parameterType="String">
|
||||
delete from qc_defect_type_class where id = #{id}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteQcDefectTypeClassByIds" parameterType="String">
|
||||
delete from qc_defect_type_class where id in
|
||||
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
Loading…
Reference in New Issue