|
@@ -2,21 +2,21 @@ package com.iotechn.unimall.admin.api.card.impl;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
+import com.iotechn.unimall.admin.api.card.ICardExchangeInfoService;
|
|
|
+import com.iotechn.unimall.data.domain.CardExchangeInfo;
|
|
|
import com.iotechn.unimall.data.domain.CardHolderInfo;
|
|
|
+import com.iotechn.unimall.data.mapper.CardExchangeInfoMapper;
|
|
|
import com.iotechn.unimall.data.mapper.CardHolderInfoMapper;
|
|
|
+import com.iotechn.unimall.data.model.Page;
|
|
|
+import com.baomidou.mybatisplus.mapper.EntityWrapper;
|
|
|
+import com.baomidou.mybatisplus.mapper.Wrapper;
|
|
|
+import com.iotechn.unimall.data.util.ExcelUtil;
|
|
|
import org.apache.ibatis.session.RowBounds;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.mapper.EntityWrapper;
|
|
|
-import com.baomidou.mybatisplus.mapper.Wrapper;
|
|
|
import com.iotechn.unimall.core.exception.ServiceException;
|
|
|
-import com.iotechn.unimall.data.util.ExcelUtil;
|
|
|
-import com.iotechn.unimall.data.mapper.unimall.CardExchangeInfoMapper;
|
|
|
-import com.iotechn.unimall.data.domain.unimall.CardExchangeInfo;
|
|
|
-import com.iotechn.unimall.admin.api.unimall.ICardExchangeInfoService;
|
|
|
-import com.iotechn.unimall.data.model.Page;
|
|
|
import java.util.Date;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
@@ -27,7 +27,7 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
* @date 2023-04-12
|
|
|
*/
|
|
|
@Service
|
|
|
-public class CardExchangeInfoServiceImpl implements ICardExchangeInfoService{
|
|
|
+public class CardExchangeInfoServiceImpl implements ICardExchangeInfoService {
|
|
|
@Autowired
|
|
|
private CardExchangeInfoMapper cardExchangeInfoMapper;
|
|
|
@Autowired
|