|
@@ -0,0 +1,55 @@
|
|
|
+package com.minpay.db.table.own.mapper;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+import com.startup.minpay.frame.jdbc.IMINMybatisEntityMapper;
|
|
|
+import com.startup.minpay.frame.jdbc.MINRowBounds;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 订单
|
|
|
+ */
|
|
|
+public interface OrderManageMapper extends IMINMybatisEntityMapper {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询订单详情
|
|
|
+ */
|
|
|
+ List<Map<String, String>> selectOrderDetail(Map<String, String> m, MINRowBounds row);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询取货记录
|
|
|
+ */
|
|
|
+ List<Map<String, String>> selectPickupRecord(Map<String, String> m, MINRowBounds row);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询收入统计
|
|
|
+ */
|
|
|
+ List<Map<String, String>> selectIncomeDetail(MINRowBounds row);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询订单数
|
|
|
+ */
|
|
|
+ String selectCountOrderNum();
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询累计收入
|
|
|
+ */
|
|
|
+ String selectCountIncome();
|
|
|
+ /**
|
|
|
+ * 查询总机台数
|
|
|
+ */
|
|
|
+ String selectCountDevice();
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 销售数据
|
|
|
+ */
|
|
|
+ List<Map<String, String>> selectProductInfo(MINRowBounds row);
|
|
|
+ /**
|
|
|
+ * 总实际金额
|
|
|
+ */
|
|
|
+ String selectAllSale();
|
|
|
+ /**
|
|
|
+ * 总商品成本
|
|
|
+ */
|
|
|
+ String selectAllCost();
|
|
|
+}
|