ADD file via upload

master
pqyt64hnf 2 years ago
parent 6481c80be9
commit 3d0d9b82c6

@ -0,0 +1,17 @@
package com.example.dao;
import com.example.entity.NotesInfo;
import com.example.vo.NotesInfoVo;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import tk.mybatis.mapper.common.Mapper;
import java.util.List;
@Repository
public interface NotesInfoDao extends Mapper<NotesInfo> {
List<NotesInfoVo> findByName(@Param("name") String name, @Param("userId") String userId, @Param("status") String status);
}
Loading…
Cancel
Save