| | |
| | | package com.jilongda.manage.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.jilongda.common.basic.PageInfo; |
| | | import com.jilongda.manage.model.TFrameGoods; |
| | | import com.jilongda.manage.model.TLensGoods; |
| | | import com.jilongda.manage.query.TFrameGoodsQuery; |
| | | import com.jilongda.manage.query.TLensGoodsQuery; |
| | | import com.jilongda.manage.vo.TFrameGoodsVO; |
| | | import com.jilongda.manage.vo.TLensGoodsVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | public interface TLensGoodsMapper extends BaseMapper<TLensGoods> { |
| | | |
| | | |
| | | List<TLensGoodsVO> lensReceiptList(@Param("query")TLensGoodsQuery query, @Param("pageInfo")PageInfo<TLensGoodsVO> pageInfo); |
| | | |
| | | } |