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 findAll(QueryWeighDto queryWeighDto); Integer mixingPlantId(); List findAlltask(Integer byId,String dictName); String dictIdByOne(String tradeName); List dictList(); String forwardingUnitSelectBy(String forwardingUnit); List findAlltaskAll(String dictName); Integer mixingPlantIdNew(); List findAlltaskNew(Integer byId, String dictName); List findAlltaskAllNew(String dictName); }