NewShouldPayService.java 995 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.caimei.modules.order.service;
  2. import com.caimei.modules.order.dao.NewShouldPayDao;
  3. import com.caimei.modules.order.entity.NewShouldPay;
  4. import com.thinkgem.jeesite.common.persistence.Page;
  5. import com.thinkgem.jeesite.common.service.CrudService;
  6. import org.springframework.stereotype.Service;
  7. import org.springframework.transaction.annotation.Transactional;
  8. import java.util.List;
  9. /**
  10. * 应付列表Service
  11. *
  12. * @author LiJun
  13. * @version 2018-09-03
  14. */
  15. @Service
  16. @Transactional(readOnly = true)
  17. public class NewShouldPayService extends CrudService<NewShouldPayDao, NewShouldPay>{
  18. public NewShouldPay get(String id) {
  19. NewShouldPay newShouldPay = super.get(id);
  20. return newShouldPay;
  21. }
  22. public List<NewShouldPay> findList(NewShouldPay newShouldPay) {
  23. return super.findList(newShouldPay);
  24. }
  25. public Page<NewShouldPay> findPage(Page<NewShouldPay> page, NewShouldPay newShouldPay) {
  26. return super.findPage(page, newShouldPay);
  27. }
  28. }