package com.huaxu.zoniot.dao; import com.huaxu.zoniot.entity.MeasuringDesc; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** *

* @Author wilian.peng * @Date 2021/1/27 9:57 * @Version 1.0 */ @Mapper public interface MeasuringDescMapper { int deleteByPrimaryKey(Integer id); int insert(MeasuringDesc record); int insertSelective(MeasuringDesc record); MeasuringDesc selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(MeasuringDesc record); int updateByPrimaryKey(MeasuringDesc record); List findMeasuringDescListByDeviceType(Integer deviceTypeId); }