|
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
|
package com.huaheng.api.mes.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.huaheng.api.mes.domain.Cartons;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.pc.config.stacking.domain.Stacking;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* 纸箱服务层
* @author xcq
*/
public interface CartonsService extends IService<Cartons> {
/**
* 保存纸箱信息
* @param list
* @return
*/
AjaxResult saveCartons(List<Cartons> list);
/**
* 查询纸箱信息
* @param cartons
* @return
*/
Cartons selectByCartons(Cartons cartons);
/**
* 修改所有码垛机上纸箱状态
* @param stacking
* @return
*/
boolean updateStackingCartons(Stacking stacking);
}
|