tjx
2 天以前 88a106141826b817a6d4b8e41c48160cef011f5e
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.hk.NumericalCollection.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.hk.NumericalCollection.entity.MesOrderSta;
 
/**
 * @author Administrator
 * @description 针对表【MES_ORDER_STA(工单时间记录表)】的数据库操作Service
 * @createDate 2024-10-15 08:46:23
 */
public interface MesOrderStaService extends IService<MesOrderSta> {
 
}