12345678910111213141516171819202122232425262728293031323334 |
- package com.caimei.modules.order.service;
- import com.caimei.modules.order.dao.NewShouldPayDao;
- import com.caimei.modules.order.entity.NewShouldPay;
- import com.thinkgem.jeesite.common.persistence.Page;
- import com.thinkgem.jeesite.common.service.CrudService;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- import java.util.List;
- /**
- * 应付列表Service
- *
- * @author LiJun
- * @version 2018-09-03
- */
- @Service
- @Transactional(readOnly = true)
- public class NewShouldPayService extends CrudService<NewShouldPayDao, NewShouldPay>{
- public NewShouldPay get(String id) {
- NewShouldPay newShouldPay = super.get(id);
- return newShouldPay;
- }
- public List<NewShouldPay> findList(NewShouldPay newShouldPay) {
- return super.findList(newShouldPay);
- }
- public Page<NewShouldPay> findPage(Page<NewShouldPay> page, NewShouldPay newShouldPay) {
- return super.findPage(page, newShouldPay);
- }
- }
|