BUGFIX:同一浏览器切换版本登录时,密码被置空
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user