| | |
| | | package com.whyc.mapper; |
| | | |
| | | import com.whyc.pojo.Software; |
| | | import lombok.Value; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface SoftwareMapper extends CustomMapper<Software>{ |
| | | |
| | | //查询软件列表的信息 |
| | | List getFileUrl(Integer lockFlag, String fileName, String applyMaterialCode, String applyModel, String owner, String boardNumber); |
| | | List getFileUrl(@Param("lockFlag") Integer lockFlag, @Param("fileName") String fileName, @Param("applyMaterialCode") String applyMaterialCode |
| | | ,@Param("applyModel") String applyModel, @Param("owner") String owner, @Param("boardNumber") String boardNumber, @Param("version") String version); |
| | | |
| | | //查询当前owner的未上传源码记录 |
| | | List<Software> getFileNameByOwnerWithCode(String owner); |
| | | } |