| | |
| | | |
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.money.UserMoneyDebt; |
| | | import com.yeshi.fanli.entity.money.UserMoneyDebt.UserMoneyDebtTypeEnum; |
| | | |
| | | public interface UserMoneyDebtMapper extends BaseMapper<UserMoneyDebt> { |
| | | |
| | |
| | | * @param sourceId |
| | | * @return |
| | | */ |
| | | UserMoneyDebt selectByUidAndSourceId(@Param("uid")Long uid,@Param("sourceId") Long sourceId); |
| | | UserMoneyDebt selectByUidAndTypeAndSourceId(@Param("uid") Long uid, @Param("type") UserMoneyDebtTypeEnum type, |
| | | @Param("sourceId") Long sourceId); |
| | | |
| | | UserMoneyDebt selectByTypeAndSourceId(@Param("type") UserMoneyDebtTypeEnum type, |
| | | @Param("sourceId") Long sourceId); |
| | | |
| | | } |