店铺扩展信息
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package com.chaozhanggui.system.cashierservice.dao;
|
||||
|
||||
import com.chaozhanggui.system.cashierservice.entity.TbShopExtend;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 店铺扩展信息(TbShopExtend)表数据库访问层
|
||||
*
|
||||
* @author ww
|
||||
* @since 2024-08-21 09:40:25
|
||||
*/
|
||||
public interface TbShopExtendMapper {
|
||||
|
||||
/**
|
||||
* 通过ID查询单条数据
|
||||
*
|
||||
* @param id 主键
|
||||
* @return 实例对象
|
||||
*/
|
||||
TbShopExtend queryById(Integer id);
|
||||
|
||||
TbShopExtend queryByShopIdAndAutoKey(Integer shopId,String autokey);
|
||||
|
||||
/**
|
||||
* 查询数据
|
||||
*
|
||||
* @param tbShopExtend 查询条件
|
||||
* @return 对象列表
|
||||
*/
|
||||
List<TbShopExtend> queryAll(TbShopExtend tbShopExtend);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user