修复依赖错误

This commit is contained in:
1304317391@qq.com
2022-10-22 13:33:31 +08:00
parent a6cf439160
commit 92e2c99b89
@@ -19,6 +19,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.github.pagehelper.PageInfo;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@@ -35,14 +36,17 @@ import java.util.List;
*/
@Slf4j
@Service
@AllArgsConstructor
@Transactional(rollbackFor = Exception.class)
public class YxEvaluationRelationServiceImpl extends BaseServiceImpl<YxEvaluationRelationMapper, YxStoreEvaluationRelation> implements YxEvaluationRelationService {
private final YxEvaluationRelationMapper yxEvaluationRelationMapper;
private final YxEvaluationService yxEvaluationService;
private final YxUserService userService;
private final IGenerator generator;
@Autowired
private YxEvaluationRelationMapper yxEvaluationRelationMapper;
@Autowired
private YxEvaluationService yxEvaluationService;
@Autowired
private YxUserService userService;
@Autowired
private IGenerator generator;
/**