zhuo
2025-04-14 8b1afe3fe677ed94888c72cbf0287abfa07349de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.inspect.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.inspect.pojo.RawMaterialOrderTemplate;
 
import java.util.List;
 
/**
 * 原材料下单模板
 *
 * @author zhuo
 * @since 2024-08-05
 */
public interface RawMaterialOrderTemplateService extends IService<RawMaterialOrderTemplate> {
 
    int addRawMaterOrderTemplate(RawMaterialOrderTemplate rawMaterialOrderTemplate);
 
    List<RawMaterialOrderTemplate> selectRawMaterOrderTemplate(String partNo);
 
    String selectRawMaterOrderTemplateById(Integer id);
 
    int delRawMaterOrderTemplate(Integer id);
 
}