liyong
2 天以前 c4aec3aa2d6c7c91b67d32ef625fe9e1f457177f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package inventory.mapper;
 
import inventory.domain.StockProduct;
 
/**
* @author 86151
* @description 针对表【stock_product】的数据库操作Mapper
* @createDate 2025-06-23 18:11:59
* @Entity inventory.domain.StockProduct
*/
public interface StockProductMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(StockProduct record);
 
    int insertSelective(StockProduct record);
 
    StockProduct selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(StockProduct record);
 
    int updateByPrimaryKey(StockProduct record);
 
}