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.

23 lines
518 B

package com.example.demo.service;
import com.example.demo.domain.entity.Admin;
import com.example.demo.domain.vo.Password;
import com.example.demo.domain.vo.Result;
/**
* @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;
String getId(String account);
Result updatePassword(Password password);
Integer resetPassword(Password password);
}