| 1234567891011121314151617181920212223242526 |
- 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<AmbAll> getAncestorsList(List<String> list);
- List<AmbSystem> selectByParentId(Long id);
- }
|