parent
3d0d9b82c6
commit
8eef32c222
@ -0,0 +1,14 @@
|
|||||||
|
package com.example.dao;
|
||||||
|
|
||||||
|
import com.example.entity.NxSystemFileInfo;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import tk.mybatis.mapper.common.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface NxSystemFileInfoDao extends Mapper<NxSystemFileInfo> {
|
||||||
|
List<NxSystemFileInfo> findByName(@Param("name") String name);
|
||||||
|
NxSystemFileInfo findByFileName(@Param("name") String name);
|
||||||
|
}
|
Loading…
Reference in new issue