AmbInvestLogMapper.java 399 B

1234567891011121314151617
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.AmbInvestLog;
  3. public interface AmbInvestLogMapper {
  4. int deleteByPrimaryKey(Long id);
  5. int insert(AmbInvestLog record);
  6. int insertSelective(AmbInvestLog record);
  7. AmbInvestLog selectByPrimaryKey(Long id);
  8. int updateByPrimaryKeySelective(AmbInvestLog record);
  9. int updateByPrimaryKey(AmbInvestLog record);
  10. }