Fancy
2024-07-04 ddd56a8f37eb47d933a7064be9341feb8dbd8165
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
package com.dy.pmsGlobal.daoPr;
 
import com.dy.pmsGlobal.pojoPr.PrBatchNumber;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
/**
* @author 小明
* @description 针对表【pr_batch_number(产品批次表)】的数据库操作Mapper
* @createDate 2024-05-29 15:53:10
* @Entity com.dy.pmsGlobal.pojoPr.PrBatchNumber
*/
@Mapper
public interface PrBatchNumberMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insertSelective(PrBatchNumber record);
 
    PrBatchNumber selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PrBatchNumber record);
 
    int updateByPrimaryKey(PrBatchNumber record);
 
    Long selectSomeCount(Map<String,Object> params);
 
    List<PrBatchNumber> selectSome(Map<String,Object> params);
 
    String selectMaxCode(String currentDayStr);
}