lishenao
12 小时以前 45fa0764c539a1164affc0937a6870fe988bf2c8
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
26
package com.ruoyi.inventory.mapper;
 
 
 
import com.ruoyi.inventory.pojo.StockProduct;
 
import java.util.List;
 
/**
* @author 86151
* @description 针对表【stock_product】的数据库操作Mapper
* @createDate 2025-06-23 18:11:59
* @Entity inventory.domain.StockProduct
*/
public interface StockProductMapper {
    List<StockProduct> selectList();
    int deleteByPrimaryKey(Long id);
 
    int insertSelective(StockProduct record);
 
    StockProduct selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(StockProduct record);
 
 
}