|
|
|
|
16
|
import com.huiju.estateagents.mapper.*;
|
16
|
import com.huiju.estateagents.mapper.*;
|
17
|
import com.huiju.estateagents.service.ITaRaiseRecordService;
|
17
|
import com.huiju.estateagents.service.ITaRaiseRecordService;
|
18
|
import com.huiju.estateagents.service.ITaUvService;
|
18
|
import com.huiju.estateagents.service.ITaUvService;
|
|
|
19
|
+import jodd.util.StringUtil;
|
19
|
import org.slf4j.Logger;
|
20
|
import org.slf4j.Logger;
|
20
|
import org.slf4j.LoggerFactory;
|
21
|
import org.slf4j.LoggerFactory;
|
21
|
import org.springframework.beans.factory.annotation.Autowired;
|
22
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
188
|
taRaiseHouse.setRaiseRecordId(taRaiseRecord.getRaiseRecordId());
|
189
|
taRaiseHouse.setRaiseRecordId(taRaiseRecord.getRaiseRecordId());
|
189
|
taRaiseHouseMapper.insert(taRaiseHouse);
|
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
|
/**
|