You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
Java
30 lines
1.0 KiB
Java
package com.supervision.livedigitalavatarmanage.service.impl;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.supervision.livedigitalavatarmanage.domain.ScriptKeypoints;
|
|
import com.supervision.livedigitalavatarmanage.dto.ScriptKeyPointsDTO;
|
|
import com.supervision.livedigitalavatarmanage.service.ScriptKeypointsService;
|
|
import com.supervision.livedigitalavatarmanage.mapper.ScriptKeypointsMapper;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author Administrator
|
|
* @description 针对表【script_keypoints(话术重要点表)】的数据库操作Service实现
|
|
* @createDate 2025-09-17 10:57:12
|
|
*/
|
|
@Service
|
|
public class ScriptKeypointsServiceImpl extends ServiceImpl<ScriptKeypointsMapper, ScriptKeypoints>
|
|
implements ScriptKeypointsService{
|
|
|
|
@Override
|
|
public List<ScriptKeyPointsDTO> listByUserIdAndProductCategory(String userId, String productCategory) {
|
|
return super.getBaseMapper().listByUserIdAndProductCategory(userId,productCategory);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|