package org.jeecg.modules.mdc.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.jeecg.modules.mdc.entity.PcAppRunRealData;
|
import org.jeecg.modules.mdc.mapper.PcAppRunRealDataMapper;
|
import org.jeecg.modules.mdc.service.IPcAppRunRealDataService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @Description: app运行实时状态表
|
* @Author: lius
|
* @Date: 2024-07-17
|
* @Version: V1.0
|
*/
|
@Service
|
public class PcAppRunRealDataServiceImpl extends ServiceImpl<PcAppRunRealDataMapper, PcAppRunRealData> implements IPcAppRunRealDataService {
|
|
}
|