|
|
@ -23,6 +23,7 @@ import com.epmet.dto.form.resi.ResiActBaseFormDTO; |
|
|
|
import com.epmet.dto.form.resi.ResiActDetailFormDTO; |
|
|
|
import com.epmet.dto.form.resi.ResiLatestActFormDTO; |
|
|
|
import com.epmet.dto.form.resi.ResiMyActFormDTO; |
|
|
|
import com.epmet.dto.form.work.ActListCommonFormDTO; |
|
|
|
import com.epmet.dto.result.resi.*; |
|
|
|
import com.epmet.dto.result.work.*; |
|
|
|
import com.epmet.entity.ActInfoEntity; |
|
|
@ -228,30 +229,30 @@ public interface ActInfoDao extends BaseDao<ActInfoEntity> { |
|
|
|
|
|
|
|
/** |
|
|
|
* @return java.util.List<com.epmet.dto.result.work.InProgressActResultDTO> |
|
|
|
* @param customerId |
|
|
|
* @param actListCommonFormDTO |
|
|
|
* @author yinzuomei |
|
|
|
* @description 查询正在进行中的活动列表 |
|
|
|
* @Date 2020/7/23 21:58 |
|
|
|
**/ |
|
|
|
List<InProgressActResultDTO> selectInprogress(String customerId); |
|
|
|
List<InProgressActResultDTO> selectInprogress(ActListCommonFormDTO actListCommonFormDTO); |
|
|
|
|
|
|
|
/** |
|
|
|
* @return java.util.List<com.epmet.dto.result.work.CanceledActResultDTO> |
|
|
|
* @param customerId |
|
|
|
* @param actListCommonFormDTO |
|
|
|
* @author yinzuomei |
|
|
|
* @description 已取消-活动列表 |
|
|
|
* @Date 2020/7/23 23:13 |
|
|
|
**/ |
|
|
|
List<CanceledActResultDTO> selectCanceledList(String customerId); |
|
|
|
List<CanceledActResultDTO> selectCanceledList(ActListCommonFormDTO actListCommonFormDTO); |
|
|
|
|
|
|
|
/** |
|
|
|
* @return java.util.List<com.epmet.dto.result.work.FinishedActResultDTO> |
|
|
|
* @param customerId |
|
|
|
* @param actListCommonFormDTO |
|
|
|
* @author yinzuomei |
|
|
|
* @description 已结束-活动列表 |
|
|
|
* @Date 2020/7/23 23:21 |
|
|
|
**/ |
|
|
|
List<FinishedActResultDTO> selectFinishedList(String customerId); |
|
|
|
List<FinishedActResultDTO> selectFinishedList(ActListCommonFormDTO actListCommonFormDTO); |
|
|
|
|
|
|
|
/** |
|
|
|
* @return java.util.List<com.epmet.dto.result.work.JoinedUserResultDTO> |
|
|
|