刘小明
2024-08-19 768feddf7a1ded7b22b1382e7b8039a12f8015a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dy.pmsGlobal.daoPr;
 
import com.dy.pmsGlobal.pojoPr.PrOrderItem;
import org.apache.ibatis.annotations.Mapper;
 
/**
* @author User
* @description 针对表【pr_order_item】的数据库操作Mapper
* @createDate 2024-08-19 14:41:42
* @Entity com.dy.pmsGlobal.pojoPr.PrOrderItem
*/
@Mapper
public interface PrOrderItemMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insertSelective(PrOrderItem record);
 
    PrOrderItem selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PrOrderItem record);
 
}