23 lines
574 B
Java
23 lines
574 B
Java
package com.yupi.springbootinit.service.impl;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.yupi.springbootinit.model.entity.Chart;
|
|
import com.yupi.springbootinit.service.ChartService;
|
|
import com.yupi.springbootinit.mapper.ChartMapper;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* @author HeSun
|
|
* @description 针对表【chart(图表信息表)】的数据库操作Service实现
|
|
* @createDate 2025-02-20 20:52:40
|
|
*/
|
|
@Service
|
|
public class ChartServiceImpl extends ServiceImpl<ChartMapper, Chart>
|
|
implements ChartService{
|
|
|
|
}
|
|
|
|
|
|
|
|
|