package com.mzl.flower.mapper.wallet;
|
|
import com.mzl.flower.entity.wallet.WalletDO;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Select;
|
import org.springframework.stereotype.Repository;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author @TaoJie
|
* @since 2024-10-22
|
*/
|
@Repository
|
public interface WalletMapper extends BaseMapper<WalletDO> {
|
|
|
@Select("select * from t_wallet where supplier_id =#{supplierId}")
|
public WalletDO getTotalAmount(String supplierId);
|
}
|