| 12345678910111213141516171819202122 |
- package com.dk.mdm.mapper.mac;
- import com.dk.mdm.model.pojo.mac.Account;
- import com.dk.common.mapper.BaseMapper;
- import com.dk.mdm.model.response.ivt.InboundResponse;
- import com.dk.mdm.model.response.mac.AccountResponse;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- /**
- * 账款对象 Mapper
- */
- @Repository
- public interface AccountMapper extends BaseMapper<Account>{
- /**
- * @desc : 根据id查询
- * @date : 2024/3/9 9:14
- * @author : 姜永辉
- */
- AccountResponse selectById(@Param("intoId") String intoId);
- }
|