CartonsService.java
937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.huaheng.api.mes.service;
import java.util.List;
import com.baomidou.mybatisplus.extension.service.IService;
import com.huaheng.api.mes.domain.Cartons;
import com.huaheng.framework.web.domain.AjaxResult;
/**
* 纸箱服务层
* @author xcq
*/
public interface CartonsService extends IService<Cartons> {
/**
* 保存纸箱信息
* @param list
* @return
*/
AjaxResult saveCartons(List<Cartons> list);
/**
* 查询纸箱信息
* @param cartons
* @return
*/
Cartons selectByCartons(Cartons cartons);
/**
* 修改所有码垛机上纸箱状态
* @param containerCode 容器编码
* @return
*/
boolean updateStackingCartons(String containerCode);
/**
* 纸箱数据矫正
*/
void cartonsDataCorrectionService();
/**
* 推送纸箱数据
* @param cartons
*/
void pushCartons(Cartons cartons);
}