1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.consum.base.service;
|
| import java.util.List;
|
| import com.consum.base.pojo.response.GoodsTemplateCountVO;
| import com.walker.jdbc.service.BaseService;
|
| /**
| * @author asus
| * @version 1.0
| * @description: 回收单物品
| * @date 2023/12/1 11:26
| */
| public interface UsingFormBackModelService extends BaseService {
|
| /**
| * 统计回收单物品数量
| *
| * @param businessId
| * @return
| */
| List<GoodsTemplateCountVO> getUsingCountByBusinessId(Long businessId);
| }
|
|