店铺管理-店铺配置:打印机设置相关接口

This commit is contained in:
谭凯凯
2024-09-25 11:17:51 +08:00
committed by Tankaikai
parent 45a6bcbe9d
commit caaa3196b3
6 changed files with 327 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.dto.ShopPrinterDTO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
/**
* @author tankaikai
* @since 2024-09-24 17:25
*/
@Mapper
public interface ShopPrinterServiceMapper {
List<ShopPrinterDTO> getList(Map<String, Object> params);
int updateStatus(@Param("id") Integer id, @Param("status") Integer status);
}