11
tjx
2025-12-04 0e96e64e353192138d770c2aef62a3175c8aa648
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.gs.dingtalk.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.gs.dingtalk.entity.MesAdDataExc;
import com.gs.dingtalk.service.MesAdDataExcService;
import com.gs.dingtalk.mapper.MesAdDataExcMapper;
import org.springframework.stereotype.Service;
 
/**
* @author Administrator
* @description 针对表【MES_AD_DATA_EXC】的数据库操作Service实现
* @createDate 2025-12-04 15:44:14
*/
@Service
public class MesAdDataExcServiceImpl extends ServiceImpl<MesAdDataExcMapper, MesAdDataExc>
    implements MesAdDataExcService{
 
}