员工账号接口实现

This commit is contained in:
张松
2025-02-12 15:36:04 +08:00
parent 119ef4397d
commit 8a4d083bc8
4 changed files with 4 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ public class ShopStaff implements Serializable {
* 使用系统用户 sys_user id
*/
@Id(keyType = KeyType.Auto)
private Integer id;
private Long id;
/**
* 员工编号

View File

@@ -15,5 +15,5 @@ public interface SysUserService extends IService<SysUser> {
Boolean updateSysUserPwd(long sysUserId, String accountPwd);
Boolean removeUserAndRole(Integer id);
Boolean removeUserAndRole(Long id);
}