更新用户信息 头像/昵称

视频号/小程序/公众号mapper  暂未投入使用
This commit is contained in:
2024-04-15 10:07:53 +08:00
parent 7d3fe9deb7
commit d7dfeee159
7 changed files with 337 additions and 4 deletions

View File

@@ -0,0 +1,32 @@
package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.TbShopVideo;
import java.util.List;
/**
* (TbShopVideo)表数据库访问层
*
* @author ww
* @since 2024-04-12 14:50:09
*/
public interface TbShopVideoMapper {
/**
* 通过ID查询单条数据
*
* @param id 主键
* @return 实例对象
*/
TbShopVideo queryById(Integer id);
/**
* 查询数据
*
* @param tbShopVideo 查询条件
* @return 对象列表
*/
List<TbShopVideo> queryAll(TbShopVideo tbShopVideo);
}