设备管理-故障类型初始化

highway
wws 11 months ago
parent eabf618a1a
commit ebe364450a

@ -0,0 +1,97 @@
package com.op.device.controller;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
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.device.domain.EquFaultType;
import com.op.device.service.IEquFaultTypeService;
import com.op.common.core.web.controller.BaseController;
import com.op.common.core.web.domain.AjaxResult;
import com.op.common.core.utils.poi.ExcelUtil;
import com.op.common.core.web.page.TableDataInfo;
/**
* Controller
*
* @author wws
* @date 2023-10-12
*/
@RestController
@RequestMapping("/faultType")
public class EquFaultTypeController extends BaseController {
@Autowired
private IEquFaultTypeService equFaultTypeService;
/**
*
*/
@RequiresPermissions("device:faultType:list")
@GetMapping("/list")
public TableDataInfo list(EquFaultType equFaultType) {
startPage();
List<EquFaultType> list = equFaultTypeService.selectEquFaultTypeList(equFaultType);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("device:faultType:export")
@Log(title = "故障类型维护", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, EquFaultType equFaultType) {
List<EquFaultType> list = equFaultTypeService.selectEquFaultTypeList(equFaultType);
ExcelUtil<EquFaultType> util = new ExcelUtil<EquFaultType>(EquFaultType.class);
util.exportExcel(response, list, "故障类型维护数据");
}
/**
*
*/
@RequiresPermissions("device:faultType:query")
@GetMapping(value = "/{faultId}")
public AjaxResult getInfo(@PathVariable("faultId") String faultId) {
return success(equFaultTypeService.selectEquFaultTypeByFaultId(faultId));
}
/**
*
*/
@RequiresPermissions("device:faultType:add")
@Log(title = "故障类型维护", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody EquFaultType equFaultType) {
return toAjax(equFaultTypeService.insertEquFaultType(equFaultType));
}
/**
*
*/
@RequiresPermissions("device:faultType:edit")
@Log(title = "故障类型维护", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody EquFaultType equFaultType) {
return toAjax(equFaultTypeService.updateEquFaultType(equFaultType));
}
/**
*
*/
@RequiresPermissions("device:faultType:remove")
@Log(title = "故障类型维护", businessType = BusinessType.DELETE)
@DeleteMapping("/{faultIds}")
public AjaxResult remove(@PathVariable String[] faultIds) {
return toAjax(equFaultTypeService.deleteEquFaultTypeByFaultIds(faultIds));
}
}

@ -0,0 +1,146 @@
package com.op.device.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;
/**
* equ_fault_type
*
* @author wws
* @date 2023-10-12
*/
public class EquFaultType extends BaseEntity {
private static final long serialVersionUID = 1L;
/** 主键 */
private String faultId;
/** 故障类型编码 */
@Excel(name = "故障类型编码")
private String faultCode;
/** 故障类型 */
@Excel(name = "故障类型")
private String faultType;
/** 故障子类 */
@Excel(name = "故障子类")
private String faultSubclass;
/** 备注 */
@Excel(name = "备注")
private String faultRemark;
/** 工厂编码 */
@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;
/** 删除标志 */
@Excel(name = "删除标志")
private String delFlag;
public void setFaultId(String faultId) {
this.faultId = faultId;
}
public String getFaultId() {
return faultId;
}
public void setFaultCode(String faultCode) {
this.faultCode = faultCode;
}
public String getFaultCode() {
return faultCode;
}
public void setFaultType(String faultType) {
this.faultType = faultType;
}
public String getFaultType() {
return faultType;
}
public void setFaultSubclass(String faultSubclass) {
this.faultSubclass = faultSubclass;
}
public String getFaultSubclass() {
return faultSubclass;
}
public void setFaultRemark(String faultRemark) {
this.faultRemark = faultRemark;
}
public String getFaultRemark() {
return faultRemark;
}
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("faultId", getFaultId())
.append("faultCode", getFaultCode())
.append("faultType", getFaultType())
.append("faultSubclass", getFaultSubclass())
.append("faultRemark", getFaultRemark())
.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,61 @@
package com.op.device.mapper;
import java.util.List;
import com.op.device.domain.EquFaultType;
/**
* Mapper
*
* @author wws
* @date 2023-10-12
*/
public interface EquFaultTypeMapper {
/**
*
*
* @param faultId
* @return
*/
public EquFaultType selectEquFaultTypeByFaultId(String faultId);
/**
*
*
* @param equFaultType
* @return
*/
public List<EquFaultType> selectEquFaultTypeList(EquFaultType equFaultType);
/**
*
*
* @param equFaultType
* @return
*/
public int insertEquFaultType(EquFaultType equFaultType);
/**
*
*
* @param equFaultType
* @return
*/
public int updateEquFaultType(EquFaultType equFaultType);
/**
*
*
* @param faultId
* @return
*/
public int deleteEquFaultTypeByFaultId(String faultId);
/**
*
*
* @param faultIds
* @return
*/
public int deleteEquFaultTypeByFaultIds(String[] faultIds);
}

@ -0,0 +1,60 @@
package com.op.device.service;
import java.util.List;
import com.op.device.domain.EquFaultType;
/**
* Service
*
* @author wws
* @date 2023-10-12
*/
public interface IEquFaultTypeService {
/**
*
*
* @param faultId
* @return
*/
public EquFaultType selectEquFaultTypeByFaultId(String faultId);
/**
*
*
* @param equFaultType
* @return
*/
public List<EquFaultType> selectEquFaultTypeList(EquFaultType equFaultType);
/**
*
*
* @param equFaultType
* @return
*/
public int insertEquFaultType(EquFaultType equFaultType);
/**
*
*
* @param equFaultType
* @return
*/
public int updateEquFaultType(EquFaultType equFaultType);
/**
*
*
* @param faultIds
* @return
*/
public int deleteEquFaultTypeByFaultIds(String[] faultIds);
/**
*
*
* @param faultId
* @return
*/
public int deleteEquFaultTypeByFaultId(String faultId);
}

@ -0,0 +1,89 @@
package com.op.device.service.impl;
import java.util.List;
import com.op.common.core.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.op.device.mapper.EquFaultTypeMapper;
import com.op.device.domain.EquFaultType;
import com.op.device.service.IEquFaultTypeService;
/**
* Service
*
* @author wws
* @date 2023-10-12
*/
@Service
public class EquFaultTypeServiceImpl implements IEquFaultTypeService {
@Autowired
private EquFaultTypeMapper equFaultTypeMapper;
/**
*
*
* @param faultId
* @return
*/
@Override
public EquFaultType selectEquFaultTypeByFaultId(String faultId) {
return equFaultTypeMapper.selectEquFaultTypeByFaultId(faultId);
}
/**
*
*
* @param equFaultType
* @return
*/
@Override
public List<EquFaultType> selectEquFaultTypeList(EquFaultType equFaultType) {
return equFaultTypeMapper.selectEquFaultTypeList(equFaultType);
}
/**
*
*
* @param equFaultType
* @return
*/
@Override
public int insertEquFaultType(EquFaultType equFaultType) {
equFaultType.setCreateTime(DateUtils.getNowDate());
return equFaultTypeMapper.insertEquFaultType(equFaultType);
}
/**
*
*
* @param equFaultType
* @return
*/
@Override
public int updateEquFaultType(EquFaultType equFaultType) {
equFaultType.setUpdateTime(DateUtils.getNowDate());
return equFaultTypeMapper.updateEquFaultType(equFaultType);
}
/**
*
*
* @param faultIds
* @return
*/
@Override
public int deleteEquFaultTypeByFaultIds(String[] faultIds) {
return equFaultTypeMapper.deleteEquFaultTypeByFaultIds(faultIds);
}
/**
*
*
* @param faultId
* @return
*/
@Override
public int deleteEquFaultTypeByFaultId(String faultId) {
return equFaultTypeMapper.deleteEquFaultTypeByFaultId(faultId);
}
}

@ -0,0 +1,118 @@
<?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.device.mapper.EquFaultTypeMapper">
<resultMap type="EquFaultType" id="EquFaultTypeResult">
<result property="faultId" column="fault_id" />
<result property="faultCode" column="fault_code" />
<result property="faultType" column="fault_type" />
<result property="faultSubclass" column="fault_subclass" />
<result property="faultRemark" column="fault_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" />
</resultMap>
<sql id="selectEquFaultTypeVo">
select fault_id, fault_code, fault_type, fault_subclass, fault_remark, factory_code, attr1, attr2, attr3, del_flag, create_by, create_time, update_by, update_time from equ_fault_type
</sql>
<select id="selectEquFaultTypeList" parameterType="EquFaultType" resultMap="EquFaultTypeResult">
<include refid="selectEquFaultTypeVo"/>
<where>
<if test="faultCode != null and faultCode != ''"> and fault_code like concat('%', #{faultCode}, '%')</if>
<if test="faultType != null and faultType != ''"> and fault_type like concat('%', #{faultType}, '%')</if>
<if test="faultSubclass != null and faultSubclass != ''"> and fault_subclass like concat('%', #{faultSubclass}, '%')</if>
<if test="faultRemark != null and faultRemark != ''"> and fault_remark = #{faultRemark}</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>
<if test="delFlag != null and delFlag != ''"> and del_flag = #{delFlag}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="createTime != null "> and create_time = #{createTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="updateTime != null "> and update_time = #{updateTime}</if>
</where>
</select>
<select id="selectEquFaultTypeByFaultId" parameterType="String" resultMap="EquFaultTypeResult">
<include refid="selectEquFaultTypeVo"/>
where fault_id = #{faultId}
</select>
<insert id="insertEquFaultType" parameterType="EquFaultType">
insert into equ_fault_type
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="faultId != null">fault_id,</if>
<if test="faultCode != null and faultCode != ''">fault_code,</if>
<if test="faultType != null and faultType != ''">fault_type,</if>
<if test="faultSubclass != null and faultSubclass != ''">fault_subclass,</if>
<if test="faultRemark != null">fault_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>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="faultId != null">#{faultId},</if>
<if test="faultCode != null and faultCode != ''">#{faultCode},</if>
<if test="faultType != null and faultType != ''">#{faultType},</if>
<if test="faultSubclass != null and faultSubclass != ''">#{faultSubclass},</if>
<if test="faultRemark != null">#{faultRemark},</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>
</trim>
</insert>
<update id="updateEquFaultType" parameterType="EquFaultType">
update equ_fault_type
<trim prefix="SET" suffixOverrides=",">
<if test="faultCode != null and faultCode != ''">fault_code = #{faultCode},</if>
<if test="faultType != null and faultType != ''">fault_type = #{faultType},</if>
<if test="faultSubclass != null and faultSubclass != ''">fault_subclass = #{faultSubclass},</if>
<if test="faultRemark != null">fault_remark = #{faultRemark},</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>
</trim>
where fault_id = #{faultId}
</update>
<delete id="deleteEquFaultTypeByFaultId" parameterType="String">
delete from equ_fault_type where fault_id = #{faultId}
</delete>
<delete id="deleteEquFaultTypeByFaultIds" parameterType="String">
delete from equ_fault_type where fault_id in
<foreach item="faultId" collection="array" open="(" separator="," close=")">
#{faultId}
</foreach>
</delete>
</mapper>
Loading…
Cancel
Save