New file |
| | |
| | | package com.dsh.course.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.dsh.course.entity.SysIntegral; |
| | | import com.dsh.course.mapper.SysIntegralMapper; |
| | | import com.dsh.course.service.ISysIntegralService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service |
| | | public class SysIntegralServiceImpl extends ServiceImpl<SysIntegralMapper, SysIntegral> implements ISysIntegralService { |
| | | |
| | | |
| | | @Override |
| | | public SysIntegral query(Integer companyId) { |
| | | return this.baseMapper.query(companyId); |
| | | } |
| | | } |