|
|
package com.yoho.ufo.service.impl;
|
|
|
|
|
|
import com.google.common.collect.Lists;
|
|
|
import com.yoho.product.dal.AuditRejectInfoMapper;
|
|
|
import com.yoho.product.model.AuditRejectInfo;
|
|
|
import com.yoho.ufo.util.DateUtil;
|
|
|
import org.apache.commons.collections.CollectionUtils;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
...
|
...
|
@@ -26,6 +28,9 @@ public class AuditRejectInfoService { |
|
|
|
|
|
|
|
|
public List<AuditRejectInfo> selectBySkups(List<Integer> list) {
|
|
|
if (CollectionUtils.isEmpty(list)) {
|
|
|
return Lists.newArrayList();
|
|
|
}
|
|
|
return auditRejectInfoMapper.selectBySkups(list);
|
|
|
}
|
|
|
|
...
|
...
|
|