|
|
@@ -1,18 +1,17 @@
|
|
|
package com.ylx.moment.service;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
-import com.ylx.moment.domain.TechnicianMoment;
|
|
|
+import com.ylx.discover.moment.domain.dto.MomentPageDTO;
|
|
|
+import com.ylx.discover.moment.domain.vo.MomentPageVO;
|
|
|
+import com.ylx.moment.domain.*;
|
|
|
import com.ylx.massage.domain.dto.EditMomentDTO;
|
|
|
-import com.ylx.massage.domain.dto.MomentAuditDTO;
|
|
|
-import com.ylx.massage.domain.dto.MomentManageQueryDTO;
|
|
|
+import com.ylx.moment.domain.dto.MomentAuditDTO;
|
|
|
+import com.ylx.moment.domain.dto.MomentManageQueryDTO;
|
|
|
import com.ylx.massage.domain.dto.PublishMomentDTO;
|
|
|
-import com.ylx.massage.domain.vo.MomentAuditStatusCountVO;
|
|
|
-import com.ylx.massage.domain.vo.MomentDetailVO;
|
|
|
-import com.ylx.massage.domain.vo.MomentListVO;
|
|
|
-import com.ylx.massage.domain.vo.MomentManageVO;
|
|
|
-import com.ylx.massage.domain.vo.MomentSimpleDetailVO;
|
|
|
import com.ylx.merchant.domain.dto.MerchantMomentDTO;
|
|
|
import com.ylx.merchant.domain.vo.MomentVO;
|
|
|
+import com.ylx.moment.domain.vo.*;
|
|
|
+
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.List;
|
|
|
|
|
|
@@ -95,7 +94,7 @@ public interface ITechnicianMomentService extends IService<TechnicianMoment> {
|
|
|
* @param pageSize 每页数量
|
|
|
* @return 我的动态列表
|
|
|
*/
|
|
|
- Page<com.ylx.massage.domain.vo.MyMomentVO> getMyMoments(String openId, Integer pageNum, Integer pageSize);
|
|
|
+ Page<MyMomentVO> getMyMoments(String openId, Integer pageNum, Integer pageSize);
|
|
|
|
|
|
/**
|
|
|
* 删除我的动态。
|
|
|
@@ -166,4 +165,6 @@ public interface ITechnicianMomentService extends IService<TechnicianMoment> {
|
|
|
MomentSimpleDetailVO getMomentSimpleDetail(Long momentId);
|
|
|
|
|
|
Page<MomentVO> getByMerchantMoment(MerchantMomentDTO dto);
|
|
|
+
|
|
|
+ Page<MomentPageVO> getMomentPage(MomentPageDTO dto);
|
|
|
}
|