tjx
昨天 a53e6872c70ba7c6c870627007ece21df9bcedbc
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.MesOrderSta;
import com.hk.NumericalCollection.mapper.MesOrderStaMapper;
import com.hk.NumericalCollection.service.MesOrderStaService;
import org.springframework.stereotype.Service;
 
/**
 * @author Administrator
 * @description 针对表【MES_ORDER_STA(工单时间记录表)】的数据库操作Service实现
 * @createDate 2024-10-15 08:46:23
 */
@Service
public class MesOrderStaServiceImpl extends ServiceImpl<MesOrderStaMapper, MesOrderSta>
        implements MesOrderStaService {
 
}