工业级运维app手机api
xufenglei
2017-11-15 61481f2bd90fe53be3cfc08d86ed1b1b7bc32260
src/main/java/com/moral/monitor/dao/AccountEntityMapper.java
@@ -2,29 +2,6 @@
import com.moral.monitor.entity.AccountEntity;
import com.moral.monitor.entity.AccountEntityExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface AccountEntityMapper {
    int countByExample(AccountEntityExample example);
    int deleteByExample(AccountEntityExample example);
    int deleteByPrimaryKey(Integer id);
    int insert(AccountEntity record);
    int insertSelective(AccountEntity record);
    List<AccountEntity> selectByExample(AccountEntityExample example);
    AccountEntity selectByPrimaryKey(Integer id);
    int updateByExampleSelective(@Param("record") AccountEntity record, @Param("example") AccountEntityExample example);
    int updateByExample(@Param("record") AccountEntity record, @Param("example") AccountEntityExample example);
    int updateByPrimaryKeySelective(AccountEntity record);
    int updateByPrimaryKey(AccountEntity record);
public interface AccountEntityMapper extends BaseDao<AccountEntity, AccountEntityExample, Integer>{
}