线下订单驱动开门

This commit is contained in:
2023-11-24 22:37:12 +08:00
parent c79b75708d
commit 07a648c3f5
24 changed files with 1621 additions and 37 deletions

View File

@@ -0,0 +1,21 @@
package com.sv.mapper;
import com.sv.entity.BarcodeEnterLog;
import com.sv.entity.BarcodeOffline;
public interface BarcodeEnterLogMapper {
int deleteByPrimaryKey(Integer id);
int insert(BarcodeEnterLog record);
int insertSelective(BarcodeEnterLog record);
BarcodeEnterLog selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(BarcodeEnterLog record);
int updateByPrimaryKey(BarcodeEnterLog record);
BarcodeEnterLog findLastByBarcode(String barcode);
}