Lius
2024-07-17 d54b8d2372ff5cf685c10c66f094df7d3b91ecbf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 {
 
}