春风项目四线(合箱线、总装线)
wujian
2024-10-23 2c65c31aceb16c1d06c692266e3fb555ecafdfb5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.jcdm.main.bs.beatSetting.mapper;
 
import com.jcdm.main.bs.beatSetting.domain.ProductNumTable;
 
import java.util.List;
 
public interface ProductNumTableMapper {
 
    public void insertProductNum(List<ProductNumTable> list);
 
 
    public void updateProductNum(ProductNumTable productNumTable);
 
    public List<ProductNumTable> selectProductNum(ProductNumTable productNumTable);
}