ElectrifyInfoMapper.java 486 字节
package com.sunyo.energy.location.dao;

import com.sunyo.energy.location.model.ElectrifyInfo;

import java.util.List;

public interface ElectrifyInfoMapper {
    int deleteByPrimaryKey(Integer id);

    int insert(ElectrifyInfo record);

    int insertSelective(ElectrifyInfo record);

    ElectrifyInfo selectByPrimaryKey(Integer id);

    List<ElectrifyInfo> selectAll();

    int updateByPrimaryKeySelective(ElectrifyInfo record);

    int updateByPrimaryKey(ElectrifyInfo record);
}