|
|
|
@ -59,7 +59,6 @@ import com.elink.esua.epdc.dto.issue.result.IssueProgressResultDTO; |
|
|
|
import com.elink.esua.epdc.dto.item.*; |
|
|
|
import com.elink.esua.epdc.dto.item.form.*; |
|
|
|
import com.elink.esua.epdc.dto.item.result.*; |
|
|
|
import com.elink.esua.epdc.dto.note.result.DeptRankResultDTO; |
|
|
|
import com.elink.esua.epdc.dto.result.KpiEvaluationAmountResultDTO; |
|
|
|
import com.elink.esua.epdc.dto.result.KpiItemHandleAmountResultDTO; |
|
|
|
import com.elink.esua.epdc.dto.result.KpiItemTimeLimitByDeptResultDTO; |
|
|
|
@ -108,7 +107,6 @@ import org.apache.logging.log4j.Logger; |
|
|
|
import org.joda.time.DateTime; |
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.scheduling.annotation.Async; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
import org.springframework.web.bind.annotation.RequestParam; |
|
|
|
@ -3738,8 +3736,12 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
@SneakyThrows |
|
|
|
@Override |
|
|
|
public void run() { |
|
|
|
Thread.sleep(10000); |
|
|
|
queryItemHandle(id); |
|
|
|
try { |
|
|
|
Thread.sleep(10000); |
|
|
|
queryItemHandle(id); |
|
|
|
} catch (Exception e) { |
|
|
|
e.printStackTrace(); |
|
|
|
} |
|
|
|
} |
|
|
|
}).start(); |
|
|
|
} |
|
|
|
@ -3932,7 +3934,6 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
* @param mobiles |
|
|
|
* @param contentNoteList |
|
|
|
*/ |
|
|
|
@Async |
|
|
|
public void sendShortMessage(List<String> mobiles, Map<String, LinkedHashMap<String, String>> contentNoteList) { |
|
|
|
SmsNoticeFormDTO smsNoticeFormDTO = new SmsNoticeFormDTO(); |
|
|
|
smsNoticeFormDTO.setMobiles(mobiles); |
|
|
|
|