| | |
| | | package com.ruoyi.goods.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | import com.ruoyi.goods.domain.TGoodsType; |
| | | import com.ruoyi.goods.dto.GoodsTypeQuery; |
| | | import com.ruoyi.goods.mapper.TGoodsTypeMapper; |
| | | import com.ruoyi.goods.service.ITGoodsTypeService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @Service |
| | | public class TGoodsTypeServiceImpl extends ServiceImpl<TGoodsTypeMapper, TGoodsType> implements ITGoodsTypeService { |
| | | |
| | | @Override |
| | | public List<TGoodsType> listType(GoodsTypeQuery query, PageInfo<TGoodsType> res) { |
| | | List<TGoodsType> list = this.baseMapper.pageList(query,res); |
| | | return list; |
| | | } |
| | | } |