Sign in

wms / hhwms · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • hhwms
  • ..
  • mapper
  • DrawMapper.java
  • 查看图纸、增加筛选条件
    e6da369a
    xumiao authored
    2022-12-14 11:42:50 +0800  
    Browse Dir »
DrawMapper.java 311 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.huaheng.pc.draw.mapper;

import com.huaheng.pc.draw.domain.Draw;
import org.apache.ibatis.annotations.Param;

/**
 * 图纸查询mapper
 * @author xcq
 */
public interface DrawMapper {
    /**
     * 查询图纸
     * @param no
     * @return
     */
    Draw selectDraw(@Param("no")String no);
}