LandRouterConfigDao.java
576 字节
package com.sy.mapper;
import com.sy.model.LandRouterConfig;
import java.util.List;
public interface LandRouterConfigDao {
int deleteByPrimaryKey(Integer id);
int insert(LandRouterConfig record);
int insertSelective(LandRouterConfig record);
LandRouterConfig selectByPrimaryKey(Integer id);
List<LandRouterConfig> selectByGatherInfo(LandRouterConfig record);
List<LandRouterConfig> selectByBussType(LandRouterConfig record);
int updateByPrimaryKeySelective(LandRouterConfig record);
int updateByPrimaryKey(LandRouterConfig record);
}