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 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;
/**

Loading…
Cancel
Save