package com.gunshi.project.xyt.service; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.gunshi.project.xyt.mapper.AssessObjectRatingMapper; import com.gunshi.project.xyt.model.AssessObjectRating; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * 描述: 考核对象指标得分详情 * author: xusan * date: 2024-09-10 10:44:14 */ @Service @Slf4j @Transactional(rollbackFor = Exception.class) public class AssessObjectRatingService extends ServiceImpl { }