添加打印日志

This commit is contained in:
牛叉闪闪
2024-07-25 15:49:44 +08:00
parent e91ae3bd8d
commit 1bf12d880c
4 changed files with 570 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.tbHandover;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Component;
@Component
@Mapper
public interface tbHandoverMapper {
int deleteByPrimaryKey(Integer id);
int insert(tbHandover record);
int insertSelective(tbHandover record);
tbHandover selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(tbHandover record);
int updateByPrimaryKey(tbHandover record);
}