Lius
2025-01-14 f69452a6d1afcb710880b6ad172663316e3b3610
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 {
 
}