2023-01-06 15:17:37 +08:00
|
|
|
package com.ai.da.service;
|
|
|
|
|
|
2024-01-19 16:36:34 +08:00
|
|
|
import com.ai.da.mapper.primary.entity.UserLikeGroup;
|
2023-01-06 15:17:37 +08:00
|
|
|
import com.ai.da.model.vo.HistoryUpdateVO;
|
|
|
|
|
import com.ai.da.model.vo.UserLikeChooseVO;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 服务类
|
|
|
|
|
*
|
|
|
|
|
* @author yanglei
|
|
|
|
|
* @since 2022-09-11
|
|
|
|
|
*/
|
|
|
|
|
public interface UserLikeGroupService extends IService<UserLikeGroup> {
|
|
|
|
|
|
|
|
|
|
void deleteUserGroup(Long userGroupId);
|
|
|
|
|
|
|
|
|
|
HistoryUpdateVO updateUserGroupName(Long userGroupId, String userGroupName, String timeZone);
|
|
|
|
|
|
2023-10-20 14:47:18 +08:00
|
|
|
Long insertUserGroup(Long userId, Long collectionId, String timeZone);
|
2023-01-06 15:17:37 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* choose
|
2023-10-20 14:47:18 +08:00
|
|
|
*
|
2023-01-06 15:17:37 +08:00
|
|
|
* @param userGroupId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
UserLikeChooseVO choose(Long userGroupId);
|
|
|
|
|
|
2023-11-20 15:06:15 +08:00
|
|
|
void deleteTrialData(Long id);
|
2023-12-28 17:58:51 +08:00
|
|
|
|
|
|
|
|
void updateDate(Long id,String timeZone);
|
2023-01-06 15:17:37 +08:00
|
|
|
}
|