| 1234567891011121314151617 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.AmbInvestLog;
- public interface AmbInvestLogMapper {
- int deleteByPrimaryKey(Long id);
- int insert(AmbInvestLog record);
- int insertSelective(AmbInvestLog record);
- AmbInvestLog selectByPrimaryKey(Long id);
- int updateByPrimaryKeySelective(AmbInvestLog record);
- int updateByPrimaryKey(AmbInvestLog record);
- }
|