master #5

Merged
bichangxiong merged 16 commits from master into prod 2025-09-06 20:30:57 +08:00
Showing only changes of commit 0b0103ea07 - Show all commits

View File

@@ -1,6 +1,7 @@
package org.dromara.property.service.impl;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.crypto.digest.BCrypt;
import org.dromara.common.core.utils.MapstructUtils;
import org.dromara.common.core.utils.StringUtils;
import org.dromara.common.mybatis.core.page.TableDataInfo;
@@ -154,6 +155,7 @@ public class ResidentUnitServiceImpl implements IResidentUnitService {
residentPerson.setAuthEndDate(unit.getAuthEndDate());
residentPerson.setUnitId(unit.getId());
residentPerson.setUnitName(unit.getName());
residentPerson.setPassword(BCrypt.hashpw("123456"));
personMapper.insert(residentPerson);
}
/**