|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.epmet.service.impl; |
|
|
|
|
|
|
|
import com.epmet.commons.tools.constant.StrConstant; |
|
|
|
import com.epmet.commons.tools.security.user.LoginUserUtil; |
|
|
|
import com.epmet.commons.tools.utils.DateUtils; |
|
|
|
import com.epmet.dto.LatestActContentDTO; |
|
|
@ -182,7 +183,11 @@ public class WorkActDraftServiceImpl implements WorkActDraftService { |
|
|
|
latestActInfoDTO.setSignUpEndTime(signUpEndTime); |
|
|
|
} |
|
|
|
//招募要求
|
|
|
|
if(StringUtils.isNotBlank(formDTO.getRequirement())){ |
|
|
|
latestActInfoDTO.setRequirement(formDTO.getRequirement()); |
|
|
|
}else{ |
|
|
|
latestActInfoDTO.setRequirement(StrConstant.NOT_FILLED); |
|
|
|
} |
|
|
|
//活动预计开始时间
|
|
|
|
if(StringUtils.isNotBlank(formDTO.getActStartTime())){ |
|
|
|
Date actStartTime= DateUtils.minStrToSecondDate(formDTO.getActStartTime()); |
|
|
|