|
|
@ -27,6 +27,7 @@ package com.yxt.anrui.oa.biz.oaappendix; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
|
import org.apache.ibatis.annotations.Select; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
@ -38,4 +39,7 @@ public interface OaAppendixMapper extends BaseMapper<OaAppendix> { |
|
|
|
List<OaAppendix> fetchByLinkSid(String linkSid); |
|
|
|
|
|
|
|
int deleteByLinkSid(String sid); |
|
|
|
|
|
|
|
@Select("select * from oa_appendix where linkSid = #{linkSid} and fileType = #{fileType}") |
|
|
|
List<OaAppendix> fetchByLinkSid2(@Param("linkSid") String linkSid, @Param("fileType") String type); |
|
|
|
} |