|
|
@@ -20,9 +20,11 @@ import com.dk.oauth.mapper.integral.IntegralShareMapper;
|
|
|
import com.dk.common.service.BaseService;
|
|
|
import com.dk.common.mapper.BaseMapper;
|
|
|
import com.dk.oauth.model.pojo.integral.IntegralTactic;
|
|
|
+import com.dk.oauth.model.query.integral.CouponSendQuery;
|
|
|
import com.dk.oauth.model.query.integral.IntegralQuery;
|
|
|
import com.dk.oauth.model.query.integral.IntegralShareQuery;
|
|
|
import com.dk.oauth.model.query.integral.IntegralTacticQuery;
|
|
|
+import com.dk.oauth.model.response.integral.CouponSendResponse;
|
|
|
import com.dk.oauth.model.response.integral.IntegralResponse;
|
|
|
import com.dk.oauth.model.response.integral.IntegralShareResponse;
|
|
|
import com.dk.oauth.model.response.integral.IntegralTacticResponse;
|
|
|
@@ -34,6 +36,7 @@ import java.time.LocalDate;
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.time.format.DateTimeFormatter;
|
|
|
import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
@Service
|
|
|
@Transactional
|
|
|
@@ -220,4 +223,14 @@ public class IntegralShareService extends BaseService<IntegralShare> {
|
|
|
public ResponseResultVO<?> selectShareItem(IntegralShareQuery integralShareQuery) {
|
|
|
return ResponseResultUtil.success(integralShareMapper.selectShareItem(integralShareQuery));
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @desc : 条件查询
|
|
|
+ * @date : 2024/8/6 08:59
|
|
|
+ * @author : 刘尧
|
|
|
+ */
|
|
|
+ public ResponseResultVO<PageList<Map<String, Object>>> selectByCondHistory(IntegralShareQuery integralShareQuery) {
|
|
|
+ return super.mergeListWithCount(integralShareQuery, integralShareMapper.selectByCondHistory(integralShareQuery),
|
|
|
+ integralShareMapper.countByCond(integralShareQuery));
|
|
|
+ }
|
|
|
}
|