Fancy
2025-01-14 057d4df78bcc5b34ca7c6897918946c4a9e65d18
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.dy.pmsGlobal.daoPr;
 
import cn.hutool.json.JSONObject;
import com.dy.pmsGlobal.pojoPlt.PltProduct;
import com.dy.pmsGlobal.pojoPr.PrOrder;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
* @author User
* @description 针对表【pr_order】的数据库操作Mapper
* @createDate 2024-08-19 14:38:52
* @Entity com.dy.pmsGlobal.pojoPr.PrOrder
*/
@Mapper
public interface PrOrderMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int deleteLogicById(Long id);
 
    int insertSelective(PrOrder record);
 
    PrOrder selectByPrimaryKey(Long id);
 
    Long selectSomeCount(Map<String, Object> params);
 
    List<PrOrder> selectSome(Map<String, Object> params);
 
    List<PrOrder> selectAll(Map<String, Object> params);
 
    boolean exists(@Param("name") String name, @Param("id") Long id);
 
    int updateByPrimaryKeySelective(PrOrder record);
 
    List<JSONObject> queryStatisticOrder();
}