新增下单库存预警消息推送
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package com.chaozhanggui.system.cashierservice.dao;
|
||||
|
||||
import com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg;
|
||||
import org.apache.ibatis.annotations.Select;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【tb_user_shop_msg】的数据库操作Mapper
|
||||
* @createDate 2024-06-28 09:55:30
|
||||
* @Entity com.chaozhanggui.system.cashierservice.entity.TbUserShopMsg
|
||||
*/
|
||||
public interface TbUserShopMsgMapper {
|
||||
|
||||
int deleteByPrimaryKey(Long id);
|
||||
|
||||
int insert(TbUserShopMsg record);
|
||||
|
||||
int insertSelective(TbUserShopMsg record);
|
||||
|
||||
TbUserShopMsg selectByPrimaryKey(Long id);
|
||||
|
||||
int updateByPrimaryKeySelective(TbUserShopMsg record);
|
||||
|
||||
int updateByPrimaryKey(TbUserShopMsg record);
|
||||
|
||||
@Select("select * from tb_user_shop_msg where shop_id=#{shopId}")
|
||||
TbUserShopMsg selectByShopId(String shopId);
|
||||
}
|
||||
Reference in New Issue
Block a user