AmbInvestLogMapper.java 528 B

123456789101112131415161718192021222324
  1. package com.goafanti.common.dao;
  2. import com.goafanti.ambSystem.bo.OutInvestLog;
  3. import com.goafanti.common.model.AmbInvestLog;
  4. import java.util.List;
  5. public interface AmbInvestLogMapper {
  6. int deleteByPrimaryKey(Long id);
  7. int insert(AmbInvestLog record);
  8. int insertSelective(AmbInvestLog record);
  9. AmbInvestLog selectByPrimaryKey(Long id);
  10. int updateByPrimaryKeySelective(AmbInvestLog record);
  11. int updateByPrimaryKey(AmbInvestLog record);
  12. List<OutInvestLog> selectByAmbInvestId(String id);
  13. }