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);
|
|
}
|