package com.goafanti.common.dao; import com.goafanti.common.model.ExpenseAccount; import com.goafanti.expenseAccount.bo.OutExpenseAccount; public interface ExpenseAccountMapper { int deleteByPrimaryKey(Integer id); int insert(ExpenseAccount record); int insertSelective(ExpenseAccount record); ExpenseAccount selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(ExpenseAccount record); int updateByPrimaryKey(ExpenseAccount record); OutExpenseAccount selectByid(Integer id); }