zouyu
2023-11-15 c9db22f6ccb6a6d66e38dec09807e88b160f29e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.chinaztt.mes.plan.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.chinaztt.mes.plan.entity.MoTestStandardParam;
 
import java.util.List;
 
/**
 * 制造订单-检测标准参数
 *
 * @author cxf
 * @date 2021-04-27 13:27:40
 */
public interface MoTestStandardParamService extends IService<MoTestStandardParam> {
 
    /**
     * 保存检测标准参数
     *
     * @param moTestStandardParamList
     * @return
     */
    boolean saveList(List<MoTestStandardParam> moTestStandardParamList);
}