ElectricityInfoMapper.java
596 字节
package com.sunyo.energy.location.dao;
import com.sunyo.energy.location.model.ElectricityInfo;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface ElectricityInfoMapper {
int deleteByPrimaryKey(String orderNumber);
int insert(ElectricityInfo record);
int insertSelective(ElectricityInfo record);
ElectricityInfo selectByPrimaryKey(String orderNumber);
List<ElectricityInfo> selectAll(@Param("deviceId") String deviceId);
int updateByPrimaryKeySelective(ElectricityInfo record);
int updateByPrimaryKey(ElectricityInfo record);
}