• 王飞's avatar
    Feat · 8c83550d
    王飞 authored
    1、增加 "体系标准"、"体系审查"、"场景变更" 等相关业务的表设计。
    2、针对表设计生成业务代码基本结构。
    
    Reference N/A
    8c83550d
ReviewKeyPointServiceImpl.java 815 Bytes
package com.ruoyi.service.impl;

import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.domain.ReviewKeyPoint;
import com.ruoyi.domain.ReviewStandard;
import com.ruoyi.mapper.ReviewKeyPointMapper;
import com.ruoyi.service.ReviewKeyPointService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

@Service
public class ReviewKeyPointServiceImpl extends ServiceImpl<ReviewKeyPointMapper, ReviewKeyPoint> implements ReviewKeyPointService {

    @Autowired
    private ReviewKeyPointMapper reviewKeyPointMapper;

    @Override
    public List<ReviewKeyPoint> findByStandardList(List<ReviewStandard> reviewStandardList) {
        return reviewKeyPointMapper.findByStandardList(reviewStandardList);
    }
}