package com.thhy.engineering.modules.biz.device.mapper; import com.thhy.engineering.modules.biz.device.entity.TBigDevice; import com.thhy.engineering.modules.biz.device.entity.TBigPath; import com.thhy.general.annotations.Idkey; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.HashMap; import java.util.List; import java.util.Map; @Mapper public interface TBigDeviceMapper { String bigNumberByOne(@Param("bigNumber") String bigNumber,@Param("companyId") String companyId); void bigDeviceInsert(@Idkey("bigDeviceId") Map values); void picturesInsert(@Idkey("id") HashMap val); List bigDeviceList(Map values); TBigDevice bigDeviceInfo(String bigDeviceId); List devicePath(String bigDeviceId); void bigDeviceDel(String bigDeviceId); void bigDevicePathDel(String bigDeviceId); void bigDeviceUpdate(Map values); List bigDevicePull(String companyId); }