package com.thhy.materials.modules.biz.weigh.mapper;
|
|
import com.thhy.general.annotations.Idkey;
|
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.video.entity.TVideoNo;
|
import com.thhy.materials.modules.biz.weigh.dto.QueryWeighDto;
|
import com.thhy.materials.modules.biz.weigh.entity.TWeighbridge;
|
import com.thhy.materials.modules.biz.weigh.entity.WeighVo;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import java.util.HashMap;
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @Author QiuYuHao
|
* @CreateDate 2023-08-29 16:31:50
|
* 地磅mapper
|
*/
|
@Mapper
|
public interface WeighMapper {
|
|
List<WeighVo> queryAll(QueryWeighDto queryWeighDto);
|
|
Integer mixingPlantId();
|
|
List<WeighDto> findAlltask(@Param("byId") Integer byId,@Param("dictName") String dictName);
|
|
String dictIdByOne(String tradeName);
|
|
List<DicetName> dictList();
|
|
String forwardingUnitSelectBy(String forwardingUnit);
|
|
void minxingIn(HashMap<String, Object> hashMap);
|
|
List<WeighDto> findAlltaskAll(String dictName);
|
|
Double selectMaterialValue(String dictId);
|
|
void materialStockRecordIn(HashMap<String, Object> hashMap1);
|
|
void materialStockRecordUp(@Param("dictId") String dictId,@Param("doubleValue") double doubleValue);
|
|
List<TVideoNo> videoList();
|
|
List<TVideoNo> videoListPage(Map<String, Object> values);
|
|
List<TVideoNo> webVideoList(Map<String, Object> values);
|
|
Integer mixingPlantIdNew();
|
|
List<WeighDto> findAlltaskNew(@Param("byId") Integer byId,@Param("dictName") String dictName);
|
|
Double selectMaterialValueNew(String dictId);
|
|
void materialStockRecordInNew(HashMap<String, Object> hashMap1);
|
|
void materialStockRecordUpNew(@Param("dictId") String dictId,@Param("doubleValue") double doubleValue);
|
|
void minxingInNew(HashMap<String, Object> hashMap);
|
|
List<WeighDto> findAlltaskAllNew(String dictName);
|
|
List<TMinxingPlant> mixingPlantIsIn();
|
|
Integer netWeighNew(Integer byId);
|
|
void netWeighUpdateNew(@Param("byId") Integer byId,@Param("netWeight") double netWeight);
|
|
List<TWeighbridge> weighbridgeList(Map<String, Object> values);
|
|
List<TWeighbridge> weighbridgeListType();
|
|
Double materialStockValue(String dictId);
|
|
void materialStockRecordIns(HashMap<String, Object> hashMap);
|
|
void weighbridgeUpdateType(Integer weighbridgeId);
|
}
|