Merge branch 'tkk' into test
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user