员工登录返回员工信息

This commit is contained in:
张松
2025-05-28 10:12:47 +08:00
parent 50f1bf05c2
commit 04abf3fb16
2 changed files with 5 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ package com.czg.account.vo;
import com.czg.account.entity.ShopInfo;
import com.czg.account.entity.ShopStaff;
import java.util.List;
@@ -13,6 +14,8 @@ public record LoginVO(
// 登录类型
Integer loginType,
// 店铺信息
ShopInfo shopInfo
ShopInfo shopInfo,
// 员工信息
ShopStaff shopStaff
) {
}