库存预警支持多账号订阅
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.chaozhanggui.system.cashierservice.dao;
|
||||
|
||||
import com.chaozhanggui.system.cashierservice.entity.TbShopOpenId;
|
||||
import org.apache.ibatis.annotations.Select;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【tb_shop_open_id(商家openid信息表)】的数据库操作Mapper
|
||||
* @createDate 2024-07-02 14:37:08
|
||||
* @Entity com.chaozhanggui.system.cashierservice.entity.TbShopOpenId
|
||||
*/
|
||||
public interface TbShopOpenIdMapper {
|
||||
|
||||
int deleteByPrimaryKey(Long id);
|
||||
|
||||
int insert(TbShopOpenId record);
|
||||
|
||||
int insertSelective(TbShopOpenId record);
|
||||
|
||||
TbShopOpenId selectByPrimaryKey(Long id);
|
||||
|
||||
int updateByPrimaryKeySelective(TbShopOpenId record);
|
||||
|
||||
int updateByPrimaryKey(TbShopOpenId record);
|
||||
|
||||
@Select("select * from tb_shop_open_id where shop_id=#{shopId} and status=1")
|
||||
List<TbShopOpenId> selectByShopId(Integer integer);
|
||||
}
|
||||
Reference in New Issue
Block a user