AccountMapper.java 593 B

12345678910111213141516171819202122
  1. package com.dk.mdm.mapper.mac;
  2. import com.dk.mdm.model.pojo.mac.Account;
  3. import com.dk.common.mapper.BaseMapper;
  4. import com.dk.mdm.model.response.ivt.InboundResponse;
  5. import com.dk.mdm.model.response.mac.AccountResponse;
  6. import org.apache.ibatis.annotations.Param;
  7. import org.springframework.stereotype.Repository;
  8. /**
  9. * 账款对象 Mapper
  10. */
  11. @Repository
  12. public interface AccountMapper extends BaseMapper<Account>{
  13. /**
  14. * @desc : 根据id查询
  15. * @date : 2024/3/9 9:14
  16. * @author : 姜永辉
  17. */
  18. AccountResponse selectById(@Param("intoId") String intoId);
  19. }