粉丝表添加父节点的信息

This commit is contained in:
2026-06-03 18:00:37 +08:00
parent 7b3879d6b6
commit 4cf8122659
4 changed files with 37 additions and 0 deletions

View File

@@ -387,6 +387,15 @@ public class LbFanManagementServiceImpl
if (entity.getMobile() != null) {
entity.setMobile(entity.getMobile().trim());
}
if (entity.getPName() != null) {
entity.setPName(entity.getPName().trim());
}
if (entity.getPPhone() != null) {
entity.setPPhone(entity.getPPhone().trim());
}
if (entity.getToken() != null) {
entity.setToken(entity.getToken().trim());
}
}
private LocalDateTime parseDateTime(String text) {