yanghb
2023-04-21 0481353111afb43a2322e18530dde26f1d841ead
ManagementTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/impl/PaymentRecordServiceImpl.java
@@ -9,7 +9,6 @@
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;
import java.util.Map;
@Service
@@ -61,10 +60,5 @@
    public List<PaymentRecord> query(Integer category, Integer userId, Integer type, Integer orderId, Integer orderType,
                      Integer payType, Integer state) throws Exception {
        return paymentRecordMapper.query(category, userId, type, orderId, orderType, payType, state);
    }
    @Override
    public List<Map<String, Object>> exportRecord(String userName, String phone, String code, String startTime, String endTime) {
        return this.baseMapper.exportRecord(userName, phone, code, startTime, endTime);
    }
}