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);
|
}
|