Browse Source

修复依赖错误

zyj
1304317391@qq.com 2 years ago
parent
commit
92e2c99b89
  1. 14
      zsw-bxg/src/main/java/co/yixiang/modules/evaluation/service/impl/YxEvaluationRelationServiceImpl.java

14
zsw-bxg/src/main/java/co/yixiang/modules/evaluation/service/impl/YxEvaluationRelationServiceImpl.java

@ -19,6 +19,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.github.pagehelper.PageInfo; import com.github.pagehelper.PageInfo;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
@ -35,14 +36,17 @@ import java.util.List;
*/ */
@Slf4j @Slf4j
@Service @Service
@AllArgsConstructor
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
public class YxEvaluationRelationServiceImpl extends BaseServiceImpl<YxEvaluationRelationMapper, YxStoreEvaluationRelation> implements YxEvaluationRelationService { public class YxEvaluationRelationServiceImpl extends BaseServiceImpl<YxEvaluationRelationMapper, YxStoreEvaluationRelation> implements YxEvaluationRelationService {
private final YxEvaluationRelationMapper yxEvaluationRelationMapper; @Autowired
private final YxEvaluationService yxEvaluationService; private YxEvaluationRelationMapper yxEvaluationRelationMapper;
private final YxUserService userService; @Autowired
private final IGenerator generator; private YxEvaluationService yxEvaluationService;
@Autowired
private YxUserService userService;
@Autowired
private IGenerator generator;
/** /**

Loading…
Cancel
Save