package com.goafanti.common.dao; import com.goafanti.common.model.ExpenseAccountPrivate; import com.goafanti.expenseAccount.bo.InputExpenseAccountPrivate; public interface ExpenseAccountPrivateMapper { int deleteByPrimaryKey(Integer id); int insert(ExpenseAccountPrivate record); int insertSelective(ExpenseAccountPrivate record); ExpenseAccountPrivate selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(ExpenseAccountPrivate record); int updateByPrimaryKey(ExpenseAccountPrivate record); Integer checkParam(InputExpenseAccountPrivate in); void updateStatusByAid(InputExpenseAccountPrivate in); ExpenseAccountPrivate selectByAccount(String accounts); }