李旭东
2023-11-24 7e603bde766e5f4fc7f95c785b1083c42f61955e
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
package com.thhy.materials.modules.biz.weigh.service;
 
import com.thhy.general.common.BasicResult;
import com.thhy.materials.modules.biz.concret.entity.dto.DicetName;
import com.thhy.materials.modules.biz.concret.entity.dto.TMinxingPlant;
import com.thhy.materials.modules.biz.concret.entity.dto.WeighDto;
import com.thhy.materials.modules.biz.weigh.dto.QueryWeighDto;
import com.thhy.materials.modules.biz.weigh.entity.WeighVo;
 
import java.util.List;
import java.util.Map;
 
/**
 * @Author QiuYuHao
 * @CreateDate 2023-08-29 16:44:52
 * 地磅接口
 */
public interface WeighService {
 
    List<WeighVo> findAll(QueryWeighDto queryWeighDto);
 
    Integer mixingPlantId();
 
    List<WeighDto> findAlltask(Integer byId,String dictName);
 
    String dictIdByOne(String tradeName);
 
    List<DicetName> dictList();
 
    String forwardingUnitSelectBy(String forwardingUnit);
 
 
    List<WeighDto> findAlltaskAll(String dictName);
 
    Integer mixingPlantIdNew();
 
    List<WeighDto> findAlltaskNew(Integer byId, String dictName);
 
    List<WeighDto> findAlltaskAllNew(String dictName);
 
    BasicResult weighbridgeList(Map<String, Object> values);
 
}