叶松
2023-12-04 6a9dc2c9553ae13bb3196f325c9905abbd502145
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
46
47
48
49
50
51
52
53
54
55
56
57
package com.thhy.materials.modules.biz.weigh.service;
 
import com.thhy.general.common.BasicResult;
import com.thhy.materials.modules.biz.concret.entity.SysSteel;
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);
 
    BasicResult headThingJsInventory();
 
    List<SysSteel> steelType();
 
    BasicResult materialWarehouseRecordList(Map<String, Object> values);
 
    BasicResult materialWarehouseRecordInsert(Map<String, Object> values);
 
    BasicResult materialWarehouseRecordUpdate(Map<String, Object> values);
 
    BasicResult materialWarehouseRecordDel(String id);
 
    BasicResult headThingJsDateValue();
}