admin
2021-02-06 d1f26741bddf6f512d62c0100d42c52be8d37e76
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/order/CommonOrderGoodsMapper.java
@@ -29,4 +29,24 @@
   List<CommonOrderGoods> listByGoodsIdAndGoodsType(@Param("goodsId") String goodsId,
         @Param("goodsType") int goodsType);
   /**
    * 没有标题的列表
    *
    * @param start
    * @param count
    * @return
    */
   List<CommonOrderGoods> listNoTitle(@Param("start") long start, @Param("count") int count);
   /**
    * 根据ID列表查询
    * @Title: listByByPrimaryKeys
    * @Description:
    * @param ids
    * @return
    * List<CommonOrderGoods> 返回类型
    * @throws
    */
   List<CommonOrderGoods> listByByPrimaryKeys(@Param("ids") List<Long> ids);
}