提交 | 用户 | 时间 | ||
2c65c3 | 1 | package com.jcdm.main.bs.beatSetting.mapper; |
W | 2 | |
3 | import com.jcdm.main.bs.beatSetting.domain.ProductNumTable; | |
4 | ||
5 | import java.util.List; | |
6 | ||
7 | public interface ProductNumTableMapper { | |
8 | ||
9 | public void insertProductNum(List<ProductNumTable> list); | |
10 | ||
11 | ||
12 | public void updateProductNum(ProductNumTable productNumTable); | |
13 | ||
14 | public List<ProductNumTable> selectProductNum(ProductNumTable productNumTable); | |
15 | } |