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{ /** * @desc : 根据条件进行查询 * @author : songy * @date : 2024/3/1 10:42 */ List 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); }