一、单个参数

 StudentParamsMapper

package cn.cnki.ref.mapper;

import cn.cnki.ref.pojo.Student;

public interface  StudentParamsMapper {
    /**
     * 根据name查询
     * @param name
     * @return
     */
    public Student getByName(String name);
}
View Code

相关文章:

  • 2021-12-06
  • 2021-10-07
  • 2021-11-10
  • 2022-01-02
  • 2022-01-18
  • 2022-01-21
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-15
  • 2021-11-13
  • 2021-09-11
  • 2022-02-03
相关资源
相似解决方案