1234567891011121314151617181920212223242526272829 |
- package com.huaxu.zoniot.dao;
- import com.huaxu.zoniot.entity.MeasuringDesc;
- import org.apache.ibatis.annotations.Mapper;
- import java.util.List;
- /**
- * <p></p>
- * @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<MeasuringDesc> findMeasuringDescListByDeviceType(Integer deviceTypeId);
- }
|