Sign in

erp / mqtt-agent · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • mqtt-agent
  • ..
  • mapper
  • PrintDeviceMapper.java
  • refactor(controller): 统一API响应格式并迁移打印设备服务
      a399fc10
    lvqi authored
    2026-01-15 15:05:16 +0800  
    Browse Code »
PrintDeviceMapper.java 369 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.diligrp.mqtt.web.mapper;

import com.diligrp.mqtt.core.dto.PrintDeviceDto;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;

/**
 * 打印设备Mapper
 *
 */
@Mapper
public interface PrintDeviceMapper {

    PrintDeviceDto queryBySn(@Param("sn") String sn);

    Boolean isFirmExist(@Param("firm") String firm);


}