tjx
5 天以前 b3839a0f70927243c0ba797cb64777c8a53c9f3b
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{
 
}