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.

15 lines
303 B

  1. package com.example.demo.service;
  2. import com.example.demo.domain.entity.Admin;
  3. /**
  4. * @program: GOLD
  5. * @ClassName adminService
  6. * @description:
  7. * @author: huangqizhen
  8. * @create: 202507-01 10:40
  9. * @Version 1.0
  10. **/
  11. public interface AdminService {
  12. Admin login(Admin admin)throws Exception;
  13. }