bug
This commit is contained in:
@@ -267,7 +267,7 @@
|
||||
and want_shop_area_id = #{request.wantShopAreaId}
|
||||
</if>
|
||||
<if test="request.lineSource != null">
|
||||
and line_source #{request.lineSource}
|
||||
and line_source = #{request.lineSource}
|
||||
</if>
|
||||
<if test="request.createTimeStart!=null and request.createTimeEnd!=null">
|
||||
and create_time between #{request.createTimeStart} and #{request.createTimeEnd}
|
||||
|
||||
@@ -14,16 +14,16 @@ public class LineListVO extends BaseInfoVO{
|
||||
@ApiModelProperty("招商经理名称")
|
||||
private String investmentManagerUserName;
|
||||
|
||||
@ApiModelProperty("招商经理名称")
|
||||
@ApiModelProperty("线索来源名称")
|
||||
private String lineSourceName;
|
||||
|
||||
@ApiModelProperty("招商经理名称")
|
||||
@ApiModelProperty("创建时间")
|
||||
private String createTime;
|
||||
|
||||
@ApiModelProperty("招商经理名称")
|
||||
@ApiModelProperty("更新时间")
|
||||
private String updateTime;
|
||||
|
||||
@ApiModelProperty("招商经理名称")
|
||||
@ApiModelProperty("更新人名称")
|
||||
private String updateUserName;
|
||||
|
||||
public LineListVO(){}
|
||||
|
||||
@@ -21,6 +21,7 @@ import com.cool.store.vo.desk.IntendPendingVO;
|
||||
import com.cool.store.vo.desk.InterviewPendingVO;
|
||||
import com.github.pagehelper.PageHelper;
|
||||
import com.github.pagehelper.PageInfo;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
@@ -137,6 +138,9 @@ public class DeskServiceImpl implements DeskService {
|
||||
}
|
||||
});
|
||||
List<HyPartnerLabelDO> hyPartnerLabelDOS = hyPartnerLabelDAO.listByIds(libelIds);
|
||||
if (CollectionUtils.isEmpty(hyPartnerLabelDOS)){
|
||||
return new HashMap<>();
|
||||
}
|
||||
return hyPartnerLabelDOS.stream().collect(Collectors.toMap(HyPartnerLabelDO::getId, x -> x));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user