|
|
@ -540,7 +540,8 @@ public class IcPartyActivityServiceImpl extends BaseServiceImpl<IcPartyActivityD |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public PageData<IcPartyActivityDTO> getActivityList(TokenDto tokenDto, PartyActivityFormDTO formDTO) { |
|
|
|
if (null == formDTO.getStartTime() && null == formDTO.getEndTime()) { |
|
|
|
// unitId 不为空(按单位查询)时,不需要限制活动创建时间
|
|
|
|
if (null == formDTO.getStartTime() && null == formDTO.getEndTime() && StringUtils.isBlank(formDTO.getUnitId())) { |
|
|
|
setDate(formDTO); |
|
|
|
} |
|
|
|
PageHelper.startPage(formDTO.getPageNo(), formDTO.getPageSize()); |
|
|
@ -617,6 +618,7 @@ public class IcPartyActivityServiceImpl extends BaseServiceImpl<IcPartyActivityD |
|
|
|
|
|
|
|
/** |
|
|
|
* 近30天开始时间和结束时间 (精确到秒) |
|
|
|
* |
|
|
|
* @Param formDTO |
|
|
|
* @Return |
|
|
|
* @Author zhaoqifeng |
|
|
|