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
15 lines
303 B
package com.example.demo.service;
|
|
|
|
import com.example.demo.domain.entity.Admin;
|
|
|
|
/**
|
|
* @program: GOLD
|
|
* @ClassName adminService
|
|
* @description:
|
|
* @author: huangqizhen
|
|
* @create: 2025−07-01 10:40
|
|
* @Version 1.0
|
|
**/
|
|
public interface AdminService {
|
|
Admin login(Admin admin)throws Exception;
|
|
}
|