ApiOrderBuyerPayCheckService.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package com.kmall.api.service;
  2. import com.kmall.api.dao.ApiOrderBuyerPayCheckMapper;
  3. import com.kmall.api.entity.OrderBuyerPayCheckEntity;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.stereotype.Service;
  6. import java.util.List;
  7. import java.util.Map;
  8. /**
  9. * 订单订购人支付人核验记录Service实现类
  10. *
  11. * @author emato
  12. * @email admin@qhdswl.com
  13. * @date 2018-10-25 17:53:21
  14. */
  15. @Service
  16. public class ApiOrderBuyerPayCheckService{
  17. @Autowired
  18. private ApiOrderBuyerPayCheckMapper orderBuyerPayCheckMapper;
  19. public OrderBuyerPayCheckEntity queryObject(Integer id) {
  20. return orderBuyerPayCheckMapper.queryObject(id);
  21. }
  22. public List<OrderBuyerPayCheckEntity> queryList(Map<String, Object> map) {
  23. return orderBuyerPayCheckMapper.queryList(map);
  24. }
  25. public int queryTotal(Map<String, Object> map) {
  26. return orderBuyerPayCheckMapper.queryTotal(map);
  27. }
  28. public int save(OrderBuyerPayCheckEntity orderBuyerPayCheck) {
  29. return orderBuyerPayCheckMapper.save(orderBuyerPayCheck);
  30. }
  31. public int update(OrderBuyerPayCheckEntity orderBuyerPayCheck) {
  32. return orderBuyerPayCheckMapper.update(orderBuyerPayCheck);
  33. }
  34. public int delete(Integer id) {
  35. return orderBuyerPayCheckMapper.delete(id);
  36. }
  37. public int deleteBatch(Integer[]ids) {
  38. return orderBuyerPayCheckMapper.deleteBatch(ids);
  39. }
  40. }