xiaoyong931011
2021-07-14 cf148cae4937f807347e56d94b2dc96c9f258c59
gc-shop/src/main/java/com/xzx/gc/shop/mapper/JhyOrderItemsMapper.java
@@ -1,7 +1,15 @@
package com.xzx.gc.shop.mapper;
import com.xzx.gc.entity.JhyOrderItems;
import com.xzx.gc.shop.vo.JhyOrderItemsVo;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface JhyOrderItemsMapper extends GcMapper<JhyOrderItems> {
    List<JhyOrderItemsVo> selectByOrderId(@Param("orderId")Long id);
    List<JhyOrderItemsVo> selectJhyOrderItemListByOrderId(@Param("orderId")Long id);
}