1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.caimei.modules.bulkpurchase.service;
- import com.caimei.modules.bulkpurchase.dao.ShouldPayDao;
- import com.caimei.modules.bulkpurchase.entity.*;
- import com.thinkgem.jeesite.common.persistence.Page;
- import com.thinkgem.jeesite.common.service.CrudService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- import java.util.List;
- /**
- * 应付列表Service
- *
- * @author ZCP
- * @version 2017-06-06
- */
- @Service
- @Transactional(readOnly = true)
- public class ShouldPayService extends CrudService<ShouldPayDao, ShouldPay> {
- @Autowired
- private ShouldPayDao shouldPayDao;
- public ShouldPay get(String id) {
- ShouldPay shouldPay = super.get(id);
- return shouldPay;
- }
- public List<ShouldPay> findList(ShouldPay ShouldPay) {
- return super.findList(ShouldPay);
- }
- public Page<ShouldPay> findPage(Page<ShouldPay> page, ShouldPay ShouldPay) {
- return super.findPage(page, ShouldPay);
- }
- }
|