tjx
6 天以前 d0443c2b5d277377f22748be405d9a06dafe04e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.gs.xky.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gs.xky.entity.MesQaItemsDetect01;
 
/**
 * @author 28567
 * @description 针对表【MES_QA_ITEMS_DETECT_01(来料入库检验表头)】的数据库操作Service
 * @createDate 2025-02-17 12:53:02
 */
public interface MesQaItemsDetect01Service extends IService<MesQaItemsDetect01> {
 
    boolean removeQa(String lotNo);
}