添加新版收银系统支付

This commit is contained in:
韩鹏辉
2024-05-17 10:52:22 +08:00
parent e64bce5e93
commit 9b441ba636
3 changed files with 306 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.TbQuickPay;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
@Mapper
public interface TbQuickPayMapper {
int deleteByPrimaryKey(Integer id);
int insert(TbQuickPay record);
int insertSelective(TbQuickPay record);
TbQuickPay selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(TbQuickPay record);
int updateByPrimaryKey(TbQuickPay record);
List<TbQuickPay> selectByShopIdAndStaffId(@Param("shopId") Integer shopId,@Param("staffId") Integer staffId);
}