generated from dxfeng/secondev-chapanda-feishu
简历识别BUG修复
This commit is contained in:
parent
1aae9e5bb7
commit
275aa12e2f
|
|
@ -636,6 +636,9 @@ public class ResumeIdentifyServiceImpl extends Service implements ResumeIdentify
|
|||
* @return
|
||||
*/
|
||||
private String getFormatDate(String dateStr) {
|
||||
if(StringUtils.isBlank(dateStr)){
|
||||
return null;
|
||||
}
|
||||
dateStr = dateStr.replace(".", "-");
|
||||
if (dateStr.length() == 7) {
|
||||
return dateStr + "-01";
|
||||
|
|
|
|||
Loading…
Reference in New Issue