ExpenseAccountPrivateMapper.java 713 B

1234567891011121314151617181920212223242526
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.ExpenseAccountPrivate;
  3. import com.goafanti.expenseAccount.bo.InputExpenseAccountPrivate;
  4. public interface ExpenseAccountPrivateMapper {
  5. int deleteByPrimaryKey(Integer id);
  6. int insert(ExpenseAccountPrivate record);
  7. int insertSelective(ExpenseAccountPrivate record);
  8. ExpenseAccountPrivate selectByPrimaryKey(Integer id);
  9. int updateByPrimaryKeySelective(ExpenseAccountPrivate record);
  10. int updateByPrimaryKey(ExpenseAccountPrivate record);
  11. Integer checkParam(InputExpenseAccountPrivate in);
  12. void updateStatusByAid(InputExpenseAccountPrivate in);
  13. ExpenseAccountPrivate selectByAccount(String accounts);
  14. }