修改msg 信息统一处理

This commit is contained in:
韩鹏辉
2024-06-14 15:26:48 +08:00
parent f3de388e49
commit 69b7ed77ec
5 changed files with 42 additions and 13 deletions

View File

@@ -1,14 +1,10 @@
package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.TbShopUserFlow;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Component;
import java.util.List;
import java.util.Map;
@Component
@Mapper
public interface TbShopUserFlowMapper {
int deleteByPrimaryKey(Integer id);
@@ -22,5 +18,6 @@ public interface TbShopUserFlowMapper {
int updateByPrimaryKey(TbShopUserFlow record);
List<Map<String,Object>> selectByMemberAccountFlow(String memberId);
}