LocationMapper.java
462 字节
package com.sunyo.energy.location.dao;
import com.sunyo.energy.location.model.Location;
import java.util.List;
public interface LocationMapper {
int deleteByPrimaryKey(Integer id);
int insert(Location record);
int insertSelective(Location record);
List<Location> selectByPrimaryKey(Integer id);
List<Location> selectAll(Integer id);
int updateByPrimaryKeySelective(Location record);
int updateByPrimaryKey(Location record);
}