AmbSystemMapper.java 588 B

1234567891011121314151617181920212223242526
  1. package com.goafanti.common.dao;
  2. import com.goafanti.ambSystem.bo.AmbAll;
  3. import com.goafanti.ambSystem.bo.OutAmb;
  4. import com.goafanti.common.model.AmbSystem;
  5. import java.util.List;
  6. public interface AmbSystemMapper {
  7. int deleteByPrimaryKey(Long id);
  8. int insert(AmbSystem record);
  9. int insertSelective(AmbSystem record);
  10. AmbSystem selectByPrimaryKey(Long id);
  11. int updateByPrimaryKeySelective(AmbSystem record);
  12. int updateByPrimaryKey(AmbSystem record);
  13. List<AmbAll> getAncestorsList(List<String> list);
  14. List<AmbSystem> selectByParentId(Long id);
  15. }