门禁开门计费逻辑调整

This commit is contained in:
2023-12-06 10:00:43 +08:00
parent 07a648c3f5
commit 137a5f87ce
35 changed files with 509 additions and 392 deletions

View File

@@ -1,11 +1,12 @@
package com.sv.mapper;
import com.sv.annotation.NoPlatform;
import com.sv.entity.BarcodeEnterLog;
import com.sv.entity.BarcodeOffline;
public interface BarcodeEnterLogMapper {
int deleteByPrimaryKey(Integer id);
@NoPlatform
int insert(BarcodeEnterLog record);
int insertSelective(BarcodeEnterLog record);
@@ -16,6 +17,7 @@ public interface BarcodeEnterLogMapper {
int updateByPrimaryKey(BarcodeEnterLog record);
@NoPlatform
BarcodeEnterLog findLastByBarcode(String barcode);
}