| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.dk.mdm.mapper.mst;
- import com.dk.mdm.model.pojo.mst.MoneyAccount;
- import com.dk.common.mapper.BaseMapper;
- import com.dk.mdm.model.query.mst.MoneyAccountQuery;
- import com.dk.mdm.model.response.mst.MoneyAccountResponse;
- import com.dk.mdm.model.response.sale.OrderResponse;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * 资金账户 Mapper
- */
- @Repository
- public interface MoneyAccountMapper extends BaseMapper<MoneyAccount>{
- /**
- * @desc : 根据条件进行查询
- * @author : songy
- * @date : 2024/3/1 10:42
- */
- List<MoneyAccountResponse> selectByCond(MoneyAccountQuery moneyAccountQuery);
- /**
- * @desc : 根据条件进行查询(数量)
- * @author : songy
- * @date : 2024/3/1 10:42
- */
- Long countByCond(MoneyAccountQuery moneyAccountQuery);
- /**
- * @desc : 查询
- * @author : songy
- * @date : 2024/3/2 16:19
- */
- Integer selectDisplayNo(MoneyAccountQuery moneyAccountQuery);
- /**
- * @desc : 根据Id进行查询
- * @author : songy
- * @date : 2024-03-03 9:25
- */
- MoneyAccountResponse selectById(String id);
- }
|