change - add打印机信息维护
parent
6322c2fd0a
commit
c98db88e02
@ -0,0 +1,99 @@
|
|||||||
|
package com.hw.system.common.controller;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.io.IOException;
|
||||||
|
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.hw.common.log.annotation.Log;
|
||||||
|
import com.hw.common.log.enums.BusinessType;
|
||||||
|
import com.hw.common.security.annotation.RequiresPermissions;
|
||||||
|
import com.hw.system.common.domain.HwPrinterInfo;
|
||||||
|
import com.hw.system.common.service.IHwPrinterInfoService;
|
||||||
|
import com.hw.common.core.web.controller.BaseController;
|
||||||
|
import com.hw.common.core.web.domain.AjaxResult;
|
||||||
|
import com.hw.common.core.utils.poi.ExcelUtil;
|
||||||
|
import com.hw.common.core.web.page.TableDataInfo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印机信息Controller
|
||||||
|
*
|
||||||
|
* @author Yinq
|
||||||
|
* @date 2024-03-25
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/hwPrinterInfo")
|
||||||
|
public class HwPrinterInfoController extends BaseController {
|
||||||
|
@Autowired
|
||||||
|
private IHwPrinterInfoService hwPrinterInfoService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询打印机信息列表
|
||||||
|
*/
|
||||||
|
@RequiresPermissions("system:hwPrinterInfo:list")
|
||||||
|
@GetMapping("/list")
|
||||||
|
public TableDataInfo list(HwPrinterInfo hwPrinterInfo) {
|
||||||
|
startPage();
|
||||||
|
List<HwPrinterInfo> list = hwPrinterInfoService.selectHwPrinterInfoList(hwPrinterInfo);
|
||||||
|
return getDataTable(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导出打印机信息列表
|
||||||
|
*/
|
||||||
|
@RequiresPermissions("system:hwPrinterInfo:export")
|
||||||
|
@Log(title = "打印机信息", businessType = BusinessType.EXPORT)
|
||||||
|
@PostMapping("/export")
|
||||||
|
public void export(HttpServletResponse response, HwPrinterInfo hwPrinterInfo) {
|
||||||
|
List<HwPrinterInfo> list = hwPrinterInfoService.selectHwPrinterInfoList(hwPrinterInfo);
|
||||||
|
ExcelUtil<HwPrinterInfo> util = new ExcelUtil<HwPrinterInfo>(HwPrinterInfo.class);
|
||||||
|
util.exportExcel(response, list, "打印机信息数据");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取打印机信息详细信息
|
||||||
|
*/
|
||||||
|
@RequiresPermissions("system:hwPrinterInfo:query")
|
||||||
|
@GetMapping(value = "/{printerInfoId}")
|
||||||
|
public AjaxResult getInfo(@PathVariable("printerInfoId") Long printerInfoId) {
|
||||||
|
return success(hwPrinterInfoService.selectHwPrinterInfoByPrinterInfoId(printerInfoId));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增打印机信息
|
||||||
|
*/
|
||||||
|
@RequiresPermissions("system:hwPrinterInfo:add")
|
||||||
|
@Log(title = "打印机信息", businessType = BusinessType.INSERT)
|
||||||
|
@PostMapping
|
||||||
|
public AjaxResult add(@RequestBody HwPrinterInfo hwPrinterInfo) {
|
||||||
|
return toAjax(hwPrinterInfoService.insertHwPrinterInfo(hwPrinterInfo));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改打印机信息
|
||||||
|
*/
|
||||||
|
@RequiresPermissions("system:hwPrinterInfo:edit")
|
||||||
|
@Log(title = "打印机信息", businessType = BusinessType.UPDATE)
|
||||||
|
@PutMapping
|
||||||
|
public AjaxResult edit(@RequestBody HwPrinterInfo hwPrinterInfo) {
|
||||||
|
return toAjax(hwPrinterInfoService.updateHwPrinterInfo(hwPrinterInfo));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除打印机信息
|
||||||
|
*/
|
||||||
|
@RequiresPermissions("system:hwPrinterInfo:remove")
|
||||||
|
@Log(title = "打印机信息", businessType = BusinessType.DELETE)
|
||||||
|
@DeleteMapping("/{printerInfoIds}")
|
||||||
|
public AjaxResult remove(@PathVariable Long[] printerInfoIds) {
|
||||||
|
return toAjax(hwPrinterInfoService.deleteHwPrinterInfoByPrinterInfoIds(printerInfoIds));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,101 @@
|
|||||||
|
package com.hw.system.common.domain;
|
||||||
|
|
||||||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
import com.hw.common.core.annotation.Excel;
|
||||||
|
import com.hw.common.core.web.domain.BaseEntity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印机信息对象 hw_printer_info
|
||||||
|
*
|
||||||
|
* @author Yinq
|
||||||
|
* @date 2024-03-25
|
||||||
|
*/
|
||||||
|
public class HwPrinterInfo extends BaseEntity {
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印机ID
|
||||||
|
*/
|
||||||
|
private Long printerInfoId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印机编号
|
||||||
|
*/
|
||||||
|
@Excel(name = "打印机编号")
|
||||||
|
private String printerInfoCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印机名称
|
||||||
|
*/
|
||||||
|
@Excel(name = "打印机名称")
|
||||||
|
private String printerInfoName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印机位置
|
||||||
|
*/
|
||||||
|
@Excel(name = "打印机位置")
|
||||||
|
private String printerInfoAddress;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* IP地址
|
||||||
|
*/
|
||||||
|
@Excel(name = "IP地址")
|
||||||
|
private String printerInfoIp;
|
||||||
|
|
||||||
|
public void setPrinterInfoId(Long printerInfoId) {
|
||||||
|
this.printerInfoId = printerInfoId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getPrinterInfoId() {
|
||||||
|
return printerInfoId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPrinterInfoCode(String printerInfoCode) {
|
||||||
|
this.printerInfoCode = printerInfoCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPrinterInfoCode() {
|
||||||
|
return printerInfoCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPrinterInfoName(String printerInfoName) {
|
||||||
|
this.printerInfoName = printerInfoName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPrinterInfoName() {
|
||||||
|
return printerInfoName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPrinterInfoAddress(String printerInfoAddress) {
|
||||||
|
this.printerInfoAddress = printerInfoAddress;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPrinterInfoAddress() {
|
||||||
|
return printerInfoAddress;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPrinterInfoIp(String printerInfoIp) {
|
||||||
|
this.printerInfoIp = printerInfoIp;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPrinterInfoIp() {
|
||||||
|
return printerInfoIp;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
||||||
|
.append("printerInfoId", getPrinterInfoId())
|
||||||
|
.append("printerInfoCode", getPrinterInfoCode())
|
||||||
|
.append("printerInfoName", getPrinterInfoName())
|
||||||
|
.append("printerInfoAddress", getPrinterInfoAddress())
|
||||||
|
.append("printerInfoIp", getPrinterInfoIp())
|
||||||
|
.append("remark", getRemark())
|
||||||
|
.append("createBy", getCreateBy())
|
||||||
|
.append("createTime", getCreateTime())
|
||||||
|
.append("updateBy", getUpdateBy())
|
||||||
|
.append("updateTime", getUpdateTime())
|
||||||
|
.toString();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,61 @@
|
|||||||
|
package com.hw.system.common.mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import com.hw.system.common.domain.HwPrinterInfo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印机信息Mapper接口
|
||||||
|
*
|
||||||
|
* @author Yinq
|
||||||
|
* @date 2024-03-25
|
||||||
|
*/
|
||||||
|
public interface HwPrinterInfoMapper {
|
||||||
|
/**
|
||||||
|
* 查询打印机信息
|
||||||
|
*
|
||||||
|
* @param printerInfoId 打印机信息主键
|
||||||
|
* @return 打印机信息
|
||||||
|
*/
|
||||||
|
public HwPrinterInfo selectHwPrinterInfoByPrinterInfoId(Long printerInfoId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询打印机信息列表
|
||||||
|
*
|
||||||
|
* @param hwPrinterInfo 打印机信息
|
||||||
|
* @return 打印机信息集合
|
||||||
|
*/
|
||||||
|
public List<HwPrinterInfo> selectHwPrinterInfoList(HwPrinterInfo hwPrinterInfo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增打印机信息
|
||||||
|
*
|
||||||
|
* @param hwPrinterInfo 打印机信息
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int insertHwPrinterInfo(HwPrinterInfo hwPrinterInfo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改打印机信息
|
||||||
|
*
|
||||||
|
* @param hwPrinterInfo 打印机信息
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int updateHwPrinterInfo(HwPrinterInfo hwPrinterInfo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除打印机信息
|
||||||
|
*
|
||||||
|
* @param printerInfoId 打印机信息主键
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteHwPrinterInfoByPrinterInfoId(Long printerInfoId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除打印机信息
|
||||||
|
*
|
||||||
|
* @param printerInfoIds 需要删除的数据主键集合
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteHwPrinterInfoByPrinterInfoIds(Long[] printerInfoIds);
|
||||||
|
}
|
@ -0,0 +1,61 @@
|
|||||||
|
package com.hw.system.common.service;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import com.hw.system.common.domain.HwPrinterInfo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印机信息Service接口
|
||||||
|
*
|
||||||
|
* @author Yinq
|
||||||
|
* @date 2024-03-25
|
||||||
|
*/
|
||||||
|
public interface IHwPrinterInfoService {
|
||||||
|
/**
|
||||||
|
* 查询打印机信息
|
||||||
|
*
|
||||||
|
* @param printerInfoId 打印机信息主键
|
||||||
|
* @return 打印机信息
|
||||||
|
*/
|
||||||
|
public HwPrinterInfo selectHwPrinterInfoByPrinterInfoId(Long printerInfoId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询打印机信息列表
|
||||||
|
*
|
||||||
|
* @param hwPrinterInfo 打印机信息
|
||||||
|
* @return 打印机信息集合
|
||||||
|
*/
|
||||||
|
public List<HwPrinterInfo> selectHwPrinterInfoList(HwPrinterInfo hwPrinterInfo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增打印机信息
|
||||||
|
*
|
||||||
|
* @param hwPrinterInfo 打印机信息
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int insertHwPrinterInfo(HwPrinterInfo hwPrinterInfo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改打印机信息
|
||||||
|
*
|
||||||
|
* @param hwPrinterInfo 打印机信息
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int updateHwPrinterInfo(HwPrinterInfo hwPrinterInfo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除打印机信息
|
||||||
|
*
|
||||||
|
* @param printerInfoIds 需要删除的打印机信息主键集合
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteHwPrinterInfoByPrinterInfoIds(Long[] printerInfoIds);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除打印机信息信息
|
||||||
|
*
|
||||||
|
* @param printerInfoId 打印机信息主键
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteHwPrinterInfoByPrinterInfoId(Long printerInfoId);
|
||||||
|
}
|
@ -0,0 +1,93 @@
|
|||||||
|
package com.hw.system.common.service.impl;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import com.hw.common.core.utils.DateUtils;
|
||||||
|
import com.hw.common.security.utils.SecurityUtils;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import com.hw.system.common.mapper.HwPrinterInfoMapper;
|
||||||
|
import com.hw.system.common.domain.HwPrinterInfo;
|
||||||
|
import com.hw.system.common.service.IHwPrinterInfoService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打印机信息Service业务层处理
|
||||||
|
*
|
||||||
|
* @author Yinq
|
||||||
|
* @date 2024-03-25
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class HwPrinterInfoServiceImpl implements IHwPrinterInfoService {
|
||||||
|
@Autowired
|
||||||
|
private HwPrinterInfoMapper hwPrinterInfoMapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询打印机信息
|
||||||
|
*
|
||||||
|
* @param printerInfoId 打印机信息主键
|
||||||
|
* @return 打印机信息
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public HwPrinterInfo selectHwPrinterInfoByPrinterInfoId(Long printerInfoId) {
|
||||||
|
return hwPrinterInfoMapper.selectHwPrinterInfoByPrinterInfoId(printerInfoId);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询打印机信息列表
|
||||||
|
*
|
||||||
|
* @param hwPrinterInfo 打印机信息
|
||||||
|
* @return 打印机信息
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public List<HwPrinterInfo> selectHwPrinterInfoList(HwPrinterInfo hwPrinterInfo) {
|
||||||
|
return hwPrinterInfoMapper.selectHwPrinterInfoList(hwPrinterInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增打印机信息
|
||||||
|
*
|
||||||
|
* @param hwPrinterInfo 打印机信息
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int insertHwPrinterInfo(HwPrinterInfo hwPrinterInfo) {
|
||||||
|
hwPrinterInfo.setCreateBy(SecurityUtils.getUsername());
|
||||||
|
hwPrinterInfo.setCreateTime(DateUtils.getNowDate());
|
||||||
|
return hwPrinterInfoMapper.insertHwPrinterInfo(hwPrinterInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改打印机信息
|
||||||
|
*
|
||||||
|
* @param hwPrinterInfo 打印机信息
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int updateHwPrinterInfo(HwPrinterInfo hwPrinterInfo) {
|
||||||
|
hwPrinterInfo.setUpdateBy(SecurityUtils.getUsername());
|
||||||
|
hwPrinterInfo.setUpdateTime(DateUtils.getNowDate());
|
||||||
|
return hwPrinterInfoMapper.updateHwPrinterInfo(hwPrinterInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除打印机信息
|
||||||
|
*
|
||||||
|
* @param printerInfoIds 需要删除的打印机信息主键
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int deleteHwPrinterInfoByPrinterInfoIds(Long[] printerInfoIds) {
|
||||||
|
return hwPrinterInfoMapper.deleteHwPrinterInfoByPrinterInfoIds(printerInfoIds);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除打印机信息信息
|
||||||
|
*
|
||||||
|
* @param printerInfoId 打印机信息主键
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int deleteHwPrinterInfoByPrinterInfoId(Long printerInfoId) {
|
||||||
|
return hwPrinterInfoMapper.deleteHwPrinterInfoByPrinterInfoId(printerInfoId);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,113 @@
|
|||||||
|
<?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.hw.system.common.mapper.HwPrinterInfoMapper">
|
||||||
|
|
||||||
|
<resultMap type="HwPrinterInfo" id="HwPrinterInfoResult">
|
||||||
|
<result property="printerInfoId" column="printer_info_id"/>
|
||||||
|
<result property="printerInfoCode" column="printer_info_code"/>
|
||||||
|
<result property="printerInfoName" column="printer_info_name"/>
|
||||||
|
<result property="printerInfoAddress" column="printer_info_address"/>
|
||||||
|
<result property="printerInfoIp" column="printer_info_ip"/>
|
||||||
|
<result property="remark" column="remark"/>
|
||||||
|
<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="selectHwPrinterInfoVo">
|
||||||
|
select printer_info_id,
|
||||||
|
printer_info_code,
|
||||||
|
printer_info_name,
|
||||||
|
printer_info_address,
|
||||||
|
printer_info_ip,
|
||||||
|
remark,
|
||||||
|
create_by,
|
||||||
|
create_time,
|
||||||
|
update_by,
|
||||||
|
update_time
|
||||||
|
from hw_printer_info
|
||||||
|
</sql>
|
||||||
|
|
||||||
|
<select id="selectHwPrinterInfoList" parameterType="HwPrinterInfo" resultMap="HwPrinterInfoResult">
|
||||||
|
<include refid="selectHwPrinterInfoVo"/>
|
||||||
|
<where>
|
||||||
|
<if test="printerInfoCode != null and printerInfoCode != ''">and printer_info_code = #{printerInfoCode}
|
||||||
|
</if>
|
||||||
|
<if test="printerInfoName != null and printerInfoName != ''">and printer_info_name like concat('%',
|
||||||
|
#{printerInfoName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="printerInfoAddress != null and printerInfoAddress != ''">and printer_info_address like
|
||||||
|
concat('%', #{printerInfoAddress}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="printerInfoIp != null and printerInfoIp != ''">and printer_info_ip = #{printerInfoIp}</if>
|
||||||
|
<if test="remark != null and remark != ''">and remark = #{remark}</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="selectHwPrinterInfoByPrinterInfoId" parameterType="Long" resultMap="HwPrinterInfoResult">
|
||||||
|
<include refid="selectHwPrinterInfoVo"/>
|
||||||
|
where printer_info_id = #{printerInfoId}
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<insert id="insertHwPrinterInfo" parameterType="HwPrinterInfo" useGeneratedKeys="true" keyProperty="printerInfoId">
|
||||||
|
insert into hw_printer_info
|
||||||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="printerInfoCode != null and printerInfoCode != ''">printer_info_code,</if>
|
||||||
|
<if test="printerInfoName != null">printer_info_name,</if>
|
||||||
|
<if test="printerInfoAddress != null">printer_info_address,</if>
|
||||||
|
<if test="printerInfoIp != null">printer_info_ip,</if>
|
||||||
|
<if test="remark != null">remark,</if>
|
||||||
|
<if test="createBy != null">create_by,</if>
|
||||||
|
<if test="createTime != null">create_time,</if>
|
||||||
|
<if test="updateBy != null">update_by,</if>
|
||||||
|
<if test="updateTime != null">update_time,</if>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="printerInfoCode != null and printerInfoCode != ''">#{printerInfoCode},</if>
|
||||||
|
<if test="printerInfoName != null">#{printerInfoName},</if>
|
||||||
|
<if test="printerInfoAddress != null">#{printerInfoAddress},</if>
|
||||||
|
<if test="printerInfoIp != null">#{printerInfoIp},</if>
|
||||||
|
<if test="remark != null">#{remark},</if>
|
||||||
|
<if test="createBy != null">#{createBy},</if>
|
||||||
|
<if test="createTime != null">#{createTime},</if>
|
||||||
|
<if test="updateBy != null">#{updateBy},</if>
|
||||||
|
<if test="updateTime != null">#{updateTime},</if>
|
||||||
|
</trim>
|
||||||
|
</insert>
|
||||||
|
|
||||||
|
<update id="updateHwPrinterInfo" parameterType="HwPrinterInfo">
|
||||||
|
update hw_printer_info
|
||||||
|
<trim prefix="SET" suffixOverrides=",">
|
||||||
|
<if test="printerInfoCode != null and printerInfoCode != ''">printer_info_code = #{printerInfoCode},</if>
|
||||||
|
<if test="printerInfoName != null">printer_info_name = #{printerInfoName},</if>
|
||||||
|
<if test="printerInfoAddress != null">printer_info_address = #{printerInfoAddress},</if>
|
||||||
|
<if test="printerInfoIp != null">printer_info_ip = #{printerInfoIp},</if>
|
||||||
|
<if test="remark != null">remark = #{remark},</if>
|
||||||
|
<if test="createBy != null">create_by = #{createBy},</if>
|
||||||
|
<if test="createTime != null">create_time = #{createTime},</if>
|
||||||
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||||
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||||
|
</trim>
|
||||||
|
where printer_info_id = #{printerInfoId}
|
||||||
|
</update>
|
||||||
|
|
||||||
|
<delete id="deleteHwPrinterInfoByPrinterInfoId" parameterType="Long">
|
||||||
|
delete
|
||||||
|
from hw_printer_info
|
||||||
|
where printer_info_id = #{printerInfoId}
|
||||||
|
</delete>
|
||||||
|
|
||||||
|
<delete id="deleteHwPrinterInfoByPrinterInfoIds" parameterType="String">
|
||||||
|
delete from hw_printer_info where printer_info_id in
|
||||||
|
<foreach item="printerInfoId" collection="array" open="(" separator="," close=")">
|
||||||
|
#{printerInfoId}
|
||||||
|
</foreach>
|
||||||
|
</delete>
|
||||||
|
</mapper>
|
@ -0,0 +1,44 @@
|
|||||||
|
import request from '@//utils/request'
|
||||||
|
|
||||||
|
// 查询打印机信息列表
|
||||||
|
export function listHwPrinterInfo(query) {
|
||||||
|
return request({
|
||||||
|
url: '/system/hwPrinterInfo/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询打印机信息详细
|
||||||
|
export function getHwPrinterInfo(printerInfoId) {
|
||||||
|
return request({
|
||||||
|
url: '/system/hwPrinterInfo/' + printerInfoId,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增打印机信息
|
||||||
|
export function addHwPrinterInfo(data) {
|
||||||
|
return request({
|
||||||
|
url: '/system/hwPrinterInfo',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改打印机信息
|
||||||
|
export function updateHwPrinterInfo(data) {
|
||||||
|
return request({
|
||||||
|
url: '/system/hwPrinterInfo',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除打印机信息
|
||||||
|
export function delHwPrinterInfo(printerInfoId) {
|
||||||
|
return request({
|
||||||
|
url: '/system/hwPrinterInfo/' + printerInfoId,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
@ -0,0 +1,325 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="90px">
|
||||||
|
<el-form-item label="打印机编号" prop="printerInfoCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.printerInfoCode"
|
||||||
|
placeholder="请输入打印机编号"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="打印机名称" prop="printerInfoName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.printerInfoName"
|
||||||
|
placeholder="请输入打印机名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
plain
|
||||||
|
icon="el-icon-plus"
|
||||||
|
size="mini"
|
||||||
|
@click="handleAdd"
|
||||||
|
v-hasPermi="['system:hwPrinterInfo:add']"
|
||||||
|
>新增
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="success"
|
||||||
|
plain
|
||||||
|
icon="el-icon-edit"
|
||||||
|
size="mini"
|
||||||
|
:disabled="single"
|
||||||
|
@click="handleUpdate"
|
||||||
|
v-hasPermi="['system:hwPrinterInfo:edit']"
|
||||||
|
>修改
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="danger"
|
||||||
|
plain
|
||||||
|
icon="el-icon-delete"
|
||||||
|
size="mini"
|
||||||
|
:disabled="multiple"
|
||||||
|
@click="handleDelete"
|
||||||
|
v-hasPermi="['system:hwPrinterInfo:remove']"
|
||||||
|
>删除
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="warning"
|
||||||
|
plain
|
||||||
|
icon="el-icon-download"
|
||||||
|
size="mini"
|
||||||
|
@click="handleExport"
|
||||||
|
v-hasPermi="['system:hwPrinterInfo:export']"
|
||||||
|
>导出
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="hwPrinterInfoList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center"/>
|
||||||
|
<el-table-column label="打印机ID" align="center" prop="printerInfoId" v-if="columns[0].visible"/>
|
||||||
|
<el-table-column label="打印机编号" align="center" prop="printerInfoCode" v-if="columns[1].visible"/>
|
||||||
|
<el-table-column label="打印机名称" align="center" prop="printerInfoName" v-if="columns[2].visible"/>
|
||||||
|
<el-table-column label="打印机位置" align="center" prop="printerInfoAddress" v-if="columns[3].visible"/>
|
||||||
|
<el-table-column label="IP地址" align="center" prop="printerInfoIp" v-if="columns[4].visible"/>
|
||||||
|
<el-table-column label="备注" align="center" prop="remark" v-if="columns[5].visible"/>
|
||||||
|
<el-table-column label="创建人" align="center" prop="createBy" v-if="columns[6].visible"/>
|
||||||
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180" v-if="columns[7].visible">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="更新人" align="center" prop="updateBy" v-if="columns[8].visible"/>
|
||||||
|
<el-table-column label="更新时间" align="center" prop="updateTime" width="180" v-if="columns[9].visible">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-edit"
|
||||||
|
@click="handleUpdate(scope.row)"
|
||||||
|
v-hasPermi="['system:hwPrinterInfo:edit']"
|
||||||
|
>修改
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
@click="handleDelete(scope.row)"
|
||||||
|
v-hasPermi="['system:hwPrinterInfo:remove']"
|
||||||
|
>删除
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNum"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- 添加或修改打印机信息对话框 -->
|
||||||
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
||||||
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
||||||
|
<el-form-item label="打印机编号" prop="printerInfoCode">
|
||||||
|
<el-input v-model="form.printerInfoCode" placeholder="请输入打印机编号"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="打印机名称" prop="printerInfoName">
|
||||||
|
<el-input v-model="form.printerInfoName" placeholder="请输入打印机名称"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="打印机位置" prop="printerInfoAddress">
|
||||||
|
<el-input v-model="form.printerInfoAddress" placeholder="请输入打印机位置"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="IP地址" prop="printerInfoIp">
|
||||||
|
<el-input v-model="form.printerInfoIp" placeholder="请输入IP地址"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容"/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
listHwPrinterInfo,
|
||||||
|
getHwPrinterInfo,
|
||||||
|
delHwPrinterInfo,
|
||||||
|
addHwPrinterInfo,
|
||||||
|
updateHwPrinterInfo
|
||||||
|
} from "@//api/system/common/hwPrinterInfo";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "HwPrinterInfo",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 打印机信息表格数据
|
||||||
|
hwPrinterInfoList: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
printerInfoCode: null,
|
||||||
|
printerInfoName: null,
|
||||||
|
printerInfoAddress: null,
|
||||||
|
printerInfoIp: null,
|
||||||
|
remark: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
// 表单校验
|
||||||
|
rules: {
|
||||||
|
printerInfoCode: [
|
||||||
|
{required: true, message: "打印机编号不能为空", trigger: "blur"}
|
||||||
|
],
|
||||||
|
},
|
||||||
|
columns: [
|
||||||
|
{key: 0, label: `打印机ID`, visible: true},
|
||||||
|
{key: 1, label: `打印机编号`, visible: true},
|
||||||
|
{key: 2, label: `打印机名称`, visible: true},
|
||||||
|
{key: 3, label: `打印机位置`, visible: true},
|
||||||
|
{key: 4, label: `IP地址`, visible: true},
|
||||||
|
{key: 5, label: `备注`, visible: true},
|
||||||
|
{key: 6, label: `创建人`, visible: true},
|
||||||
|
{key: 7, label: `创建时间`, visible: true},
|
||||||
|
{key: 8, label: `更新人`, visible: true},
|
||||||
|
{key: 9, label: `更新时间`, visible: true},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询打印机信息列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
listHwPrinterInfo(this.queryParams).then(response => {
|
||||||
|
this.hwPrinterInfoList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
printerInfoId: null,
|
||||||
|
printerInfoCode: null,
|
||||||
|
printerInfoName: null,
|
||||||
|
printerInfoAddress: null,
|
||||||
|
printerInfoIp: null,
|
||||||
|
remark: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
// 多选框选中数据
|
||||||
|
handleSelectionChange(selection) {
|
||||||
|
this.ids = selection.map(item => item.printerInfoId)
|
||||||
|
this.single = selection.length !== 1
|
||||||
|
this.multiple = !selection.length
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加打印机信息";
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
const printerInfoId = row.printerInfoId || this.ids
|
||||||
|
getHwPrinterInfo(printerInfoId).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改打印机信息";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
if (this.form.printerInfoId != null) {
|
||||||
|
updateHwPrinterInfo(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addHwPrinterInfo(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
handleDelete(row) {
|
||||||
|
const printerInfoIds = row.printerInfoId || this.ids;
|
||||||
|
this.$modal.confirm('是否确认删除打印机信息编号为"' + printerInfoIds + '"的数据项?').then(function () {
|
||||||
|
return delHwPrinterInfo(printerInfoIds);
|
||||||
|
}).then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess("删除成功");
|
||||||
|
}).catch(() => {
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('system/hwPrinterInfo/export', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `hwPrinterInfo_${new Date().getTime()}.xlsx`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in New Issue