添加新版收银系统支付
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user