| | |
| | | package com.dsh.account.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.dsh.account.dto.IntroduceUserQuery; |
| | | import com.dsh.account.entity.IntroduceUser; |
| | | import com.dsh.account.entity.TAppGift; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TAppGiftService extends IService<TAppGift> { |
| | | |
| | | Integer weeksOfAddHours(Long packetId,Integer appUserId,Integer num); |
| | | Integer weeksOfAddHours(Long packetId, Integer appUserId, Integer num); |
| | | |
| | | |
| | | List<IntroduceUser> queryIntroduceAll(IntroduceUserQuery query); |
| | | |
| | | } |