更新用户信息 头像/昵称
视频号/小程序/公众号mapper 暂未投入使用
This commit is contained in:
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user