| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package com.dk.mdm.mapper.mst;
- import com.dk.mdm.model.pojo.mst.GoodsBrand;
- import com.dk.mdm.model.pojo.mst.GoodsSeries;
- import com.dk.common.mapper.BaseMapper;
- import com.dk.mdm.model.query.mst.GoodsBrandQuery;
- import com.dk.mdm.model.query.mst.GoodsSeriesQuery;
- import com.dk.mdm.model.query.mst.UnitQuery;
- import com.dk.mdm.model.response.mst.GoodsBrandResponse;
- import com.dk.mdm.model.response.mst.GoodsSeriesResponse;
- import com.dk.mdm.model.response.mst.UnitResponse;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * 商品系列 Mapper
- */
- @Repository
- public interface GoodsSeriesMapper extends BaseMapper<GoodsSeries>{
- /**
- * @desc : 根据条件进行查询
- * @author : 于继渤
- * @date : 2024/2/26 10:36
- */
- List<GoodsSeriesResponse> selectByCond(GoodsSeriesQuery goodsSeriesQuery);
- /**
- * @desc : 根据条件进行查询
- * @author : 王英杰
- * @date : 2024/2/26 10:36
- */
- List<GoodsSeriesResponse> listByNopage(GoodsSeriesQuery goodsSeriesQuery);
- /**
- * @desc : 根据条件进行查询(数量)
- * @author : 于继渤
- * @date : 2024/2/26 10:36
- */
- Long countByCond(GoodsSeriesQuery goodsSeriesQuery);
- /**
- * @desc : 根据名称查ID
- * @author : 常皓宁
- * @date : 2024/6/12 8:38
- */
- GoodsSeriesResponse selectByUuId(GoodsSeriesQuery goodsSeriesQuery);
- }
|