xiaoyong931011
2021-07-14 8d08ca6bdfc3dd61b0aaa7daa27308c3d59f0df1
gc-shop/src/main/java/com/xzx/gc/shop/mapper/JhyOrderMapper.java
@@ -7,11 +7,20 @@
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public interface JhyOrderMapper  extends GcMapper<JhyOrder> {
    List<QueryJhyOrderListVo> queryOrderList(@Param("record") QueryJhyOrderListDto model);
    ViewJhyOrderVo viewJhyOrder(@Param("id")Long id);
    ViewJhyOrderVo viewJhyOrder(@Param("id") Long id);
    List<Map<String, Object>> selectJhyOrderTitleStatistics(@Param("userId") String userId);
    Integer selectJhyOrderCnt(@Param("userId") String userId);
    BigDecimal selectTotalScoreHasGet(@Param("userId") String userId);
}