tjx
2 天以前 88a106141826b817a6d4b8e41c48160cef011f5e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.hk.NumericalCollection.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.hk.NumericalCollection.entity.MesOrderSelect;
import com.hk.NumericalCollection.service.MesOrderSelectService;
import com.hk.NumericalCollection.mapper.MesOrderSelectMapper;
import org.springframework.stereotype.Service;
 
/**
* @author Administrator
* @description 针对表【MES_ORDER_SELECT】的数据库操作Service实现
* @createDate 2024-11-06 14:54:17
*/
@Service
public class MesOrderSelectServiceImpl extends ServiceImpl<MesOrderSelectMapper, MesOrderSelect>
    implements MesOrderSelectService{
 
}