package com.goafanti.common.dao; import com.goafanti.ambSystem.bo.AmbAll; import com.goafanti.ambSystem.bo.OutAmb; import com.goafanti.common.model.AmbSystem; import java.util.List; public interface AmbSystemMapper { int deleteByPrimaryKey(Long id); int insert(AmbSystem record); int insertSelective(AmbSystem record); AmbSystem selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(AmbSystem record); int updateByPrimaryKey(AmbSystem record); List getAncestorsList(List list); List selectByParentId(Long id); }