添加结算打印小票

This commit is contained in:
韩鹏辉
2024-04-03 10:56:59 +08:00
parent a2f467038b
commit 97da8f8392
6 changed files with 135 additions and 13 deletions

View File

@@ -1,10 +1,14 @@
package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.ShopUserDutyPay;
import com.chaozhanggui.system.cashierservice.model.HandoverInfo;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
import java.util.List;
import java.util.Map;
@Component
@Mapper
public interface ShopUserDutyPayMapper {
@@ -21,4 +25,7 @@ public interface ShopUserDutyPayMapper {
int updateByPrimaryKey(ShopUserDutyPay record);
ShopUserDutyPay selectByDuctIdAndType(@Param("dutyId") Integer dutyId,@Param("payType") String payType);
List<Map<String,Object>> selectByDutyId(Integer dutyId);
}