|
@@ -16,6 +16,7 @@ import com.huiju.estateagents.entity.*;
|
16
|
16
|
import com.huiju.estateagents.mapper.*;
|
17
|
17
|
import com.huiju.estateagents.service.ITaRaiseRecordService;
|
18
|
18
|
import com.huiju.estateagents.service.ITaUvService;
|
|
19
|
+import jodd.util.StringUtil;
|
19
|
20
|
import org.slf4j.Logger;
|
20
|
21
|
import org.slf4j.LoggerFactory;
|
21
|
22
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -188,6 +189,13 @@ public class TaRaiseRecordServiceImpl extends ServiceImpl<TaRaiseRecordMapper, T
|
188
|
189
|
taRaiseHouse.setRaiseRecordId(taRaiseRecord.getRaiseRecordId());
|
189
|
190
|
taRaiseHouseMapper.insert(taRaiseHouse);
|
190
|
191
|
});
|
|
192
|
+
|
|
193
|
+ //把idcard字断更新进person表
|
|
194
|
+ if (StringUtil.isEmpty(taPerson.getIdcard())){
|
|
195
|
+ taPerson.setIdcard(taRaiseRecord.getIdcard());
|
|
196
|
+ taPersonMapper.updateById(taPerson);
|
|
197
|
+ }
|
|
198
|
+
|
191
|
199
|
}
|
192
|
200
|
|
193
|
201
|
/**
|