BUGFIX:同一浏览器切换版本登录时,密码被置空

This commit is contained in:
2025-08-13 16:45:30 +08:00
parent 1e25ae36f1
commit c28db81893
5 changed files with 35 additions and 10 deletions

View File

@@ -2,11 +2,17 @@ package com.ai.da.model.dto;
import com.ai.da.mapper.primary.entity.Account;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@NoArgsConstructor
public class AddSubAccountDTO extends Account {
private List<Long> deleteIdList;
public AddSubAccountDTO(List<Long> deleteIdList) {
this.deleteIdList = deleteIdList;
}
}