File was renamed from fanli/src/main/java/com/yeshi/fanli/service/inter/user/vip/TeamDailyRecordService.java |
| | |
| | | package com.yeshi.fanli.service.inter.user.vip;
|
| | | package com.yeshi.fanli.service.inter.user.invite;
|
| | |
|
| | | import java.util.Date;
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.vip.TeamDailyRecord;
|
| | | import com.yeshi.fanli.exception.user.TeamDailyRecordException;
|
| | |
|
| | | public interface TeamDailyRecordService {
|
| | |
|
| | |
| | | * @return
|
| | | */
|
| | | public List<TeamDailyRecord> getbyUid(Long uid, Date minTime);
|
| | |
|
| | | /**
|
| | | * 保存信息- 新增、选择更新
|
| | | * @param record
|
| | | * @throws TeamDailyRecordException
|
| | | */
|
| | | public void save(TeamDailyRecord record) throws TeamDailyRecordException;
|
| | | }
|