zhuo
9 天以前 7299b1b4e0730fecb92021c4ae95e2ac1a13ea3d
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);
 
}