You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
344 B

  1. package com.example.demo.mapper;
  2. import com.example.demo.domain.entity.Admin;
  3. import org.apache.ibatis.annotations.Mapper;
  4. /**
  5. * @program: GOLD
  6. * @ClassName AdminMapper
  7. * @description:
  8. * @author: huangqizhen
  9. * @create: 202506-27 17:21
  10. * @Version 1.0
  11. **/
  12. @Mapper
  13. public interface AdminMapper {
  14. Admin getAdmin(String account);
  15. }