提交 | 用户 | 时间
|
71e81e
|
1 |
package cn.stylefeng.guns.modular.om.productionOrdeInfo.mapper; |
懒 |
2 |
|
|
3 |
import cn.stylefeng.guns.modular.om.productionOrdeInfo.entity.ProductionOrdeInfo; |
|
4 |
import cn.stylefeng.guns.modular.om.productionOrdeInfo.model.params.ProductionOrdeInfoParam; |
|
5 |
import cn.stylefeng.guns.modular.om.productionOrdeInfo.model.result.ProductionOrdeInfoResult; |
|
6 |
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
7 |
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
8 |
import org.apache.ibatis.annotations.Param; |
|
9 |
|
|
10 |
import java.util.HashMap; |
|
11 |
import java.util.List; |
|
12 |
import java.util.Map; |
|
13 |
|
|
14 |
/** |
|
15 |
* <p> |
|
16 |
* 生产工单 Mapper 接口 |
|
17 |
* </p> |
|
18 |
* |
|
19 |
* @author cl |
|
20 |
* @since 2022-10-25 |
|
21 |
*/ |
|
22 |
public interface ProductionOrdeInfoMapper extends BaseMapper<ProductionOrdeInfo> { |
|
23 |
|
|
24 |
/** |
|
25 |
* 获取列表 |
|
26 |
* |
|
27 |
* @author cl |
|
28 |
* @Date 2022-10-25 |
|
29 |
*/ |
|
30 |
List<ProductionOrdeInfoResult> customList(@Param("paramCondition") ProductionOrdeInfoParam paramCondition); |
|
31 |
|
|
32 |
/** |
|
33 |
* 获取map列表 |
|
34 |
* |
|
35 |
* @author cl |
|
36 |
* @Date 2022-10-25 |
|
37 |
*/ |
|
38 |
List<Map<String, Object>> customMapList(@Param("paramCondition") ProductionOrdeInfoParam paramCondition); |
|
39 |
|
|
40 |
/** |
|
41 |
* 获取分页实体列表 |
|
42 |
* |
|
43 |
* @author cl |
|
44 |
* @Date 2022-10-25 |
|
45 |
*/ |
|
46 |
Page<ProductionOrdeInfoResult> customPageList(@Param("page") Page page, @Param("paramCondition") ProductionOrdeInfoParam paramCondition); |
|
47 |
|
|
48 |
/** |
|
49 |
* 获取分页map列表 |
|
50 |
* |
|
51 |
* @author cl |
|
52 |
* @Date 2022-10-25 |
|
53 |
*/ |
|
54 |
Page<Map<String, Object>> customPageMapList(@Param("page") Page page, @Param("paramCondition") ProductionOrdeInfoParam paramCondition); |
|
55 |
|
bbd4c8
|
56 |
List<ProductionOrdeInfoResult> lineFinishQty(); |
71e81e
|
57 |
|
懒 |
58 |
HashMap getOrderWeek(); |
|
59 |
|
|
60 |
Integer getPlanQtyByDate(@Param("paramCondition") String Str); |
|
61 |
|
|
62 |
Integer getActualQtyByDate(@Param("testdateset") String str); |
|
63 |
|
|
64 |
List<ProductionOrdeInfoResult> getListMonth(); |
a2805e
|
65 |
|
懒 |
66 |
List<ProductionOrdeInfoResult> getColumnarDate(); |
9bd546
|
67 |
|
懒 |
68 |
List<ProductionOrdeInfoResult> orderDescListFive(); |
71e81e
|
69 |
} |