yaowanxin
昨天 4c001e8b7efc1383d1cdfc8219538eeaec49c51b
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.StockOut;
 
/**
* @author 86151
* @description 针对表【stock_out】的数据库操作Mapper
* @createDate 2025-06-23 18:11:59
* @Entity inventory.domain.StockOut
*/
public interface StockOutMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(StockOut record);
 
    int insertSelective(StockOut record);
 
    StockOut selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(StockOut record);
 
    int updateByPrimaryKey(StockOut record);
 
}