Merge remote-tracking branch 'origin/master'

This commit is contained in:
Tankaikai
2025-02-20 10:27:50 +08:00
4 changed files with 29 additions and 5 deletions

View File

@@ -87,4 +87,12 @@ public class ShopStaff implements Serializable {
*/
private Integer isPc;
@Column(ignore = true)
private Long roleId;
@Column(ignore = true)
private String accountName;
@Column(ignore = true)
private String accountPwd;
}

View File

@@ -26,4 +26,6 @@ public interface ShopStaffService extends IService<ShopStaff> {
Boolean delete(ShopStaffRemoveDTO shopStaffRemoveDTO);
List<Long> permission(Long id);
ShopStaff detail(Long shopId, Long id);
}