feat: 移植工程
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.cxx.admin.service;
|
||||
|
||||
|
||||
import com.cxx.admin.dto.user.AccountDto;
|
||||
import com.cxx.common.entity.Account;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface AccountService {
|
||||
List<AccountDto> queryAccountList();
|
||||
|
||||
Account queryAccountByUserId(Long userId);
|
||||
|
||||
Boolean registerAccount(AccountDto accountDto);
|
||||
|
||||
Boolean deleteAccount(Long id);
|
||||
}
|
||||
Reference in New Issue
Block a user