TienChin 渠道管理-渠道搜索

简介: TienChin 渠道管理-渠道搜索

ChannelController

@PreAuthorize("hasPermission('tienchin:channel:list')")
@GetMapping("/list")
TableDataInfo list(ChannelVO channelVO) {
    startPage();
    List<Channel> list = iChannelService.selectChannelList(channelVO);
    return getDataTable(list);
}

IChannelService

/**
 * 分页查询渠道列表
 *
 * @param channelVO 渠道信息搜索条件
 * @return {@code List<Channel> }
 * @author BNTang
 * @since 2023/09/03 11:16:03
 */
List<Channel> selectChannelList(ChannelVO channelVO);

ChannelServiceImpl

@Override
public List<Channel> selectChannelList(ChannelVO channelVO) {
    return channelMapper.selectChannelList(channelVO);
}

ChannelMapper

/**
 * 分页查询渠道列表
 *
 * @param channelVO 渠道信息搜索条件
 * @return {@code List<Channel> }
 * @author BNTang
 * @since 2023/09/03 11:16:03
 */
List<Channel> selectChannelList(ChannelVO channelVO);

ChannelMapper.xml

...
<if test="channelName != null">
    AND channel_name LIKE CONCAT('%', #{channelName}, '%')
</if>
<if test="status != null">
    AND status = #{status}
</if>
<if test="type != null">
    AND type = #{type}
</if>
<if test="params.beginTime != null and params.endTime != null">
    AND create_time BETWEEN #{params.beginTime} AND #{params.endTime}
</if>


目录
相关文章
|
8月前
TienChin 渠道管理-渠道导出
TienChin 渠道管理-渠道导出
23 0
|
8月前
|
SQL
TienChin 渠道管理-渠道页面完善
TienChin 渠道管理-渠道页面完善
23 0
|
8月前
|
关系型数据库 MySQL
TienChin 渠道管理-渠道导入
TienChin 渠道管理-渠道导入
28 0
|
7月前
|
SQL 小程序 JavaScript
【易售小程序项目】小程序首页(展示商品、商品搜索、商品分类搜索)【后端基于若依管理系统开发】
【易售小程序项目】小程序首页(展示商品、商品搜索、商品分类搜索)【后端基于若依管理系统开发】
41 0
|
6月前
|
搜索推荐 Java 数据库
淘东电商项目(46) -商品搜索服务功能的实现
淘东电商项目(46) -商品搜索服务功能的实现
38 0
|
1天前
|
数据采集 监控 供应链
shopee商品列表数据接口丨关键词搜索shopee商品数据采集
shopee商品列表数据接口丨关键词搜索shopee商品数据采集
44 5
|
1天前
|
API 开发工具 开发者
通过解析封装关键词搜索速卖通商品列表数据接口,速卖通API接口
通过解析封装关键词搜索速卖通商品列表数据接口,速卖通API接口
37 0
|
6月前
|
存储 JSON API
调用API接口获取淘宝关键词商品数据:详细指南与代码实践
在电商领域,获取关键词商品数据对于市场研究、竞品分析以及营销策略的制定具有重要意义。淘宝作为中国最大的电商平台之一,提供了丰富的API接口供开发者使用。本文将详细介绍如何调用淘宝API接口来获取淘宝关键词商品数据,并给出相应的代码示例。通过本文的学习,你将能够掌握利用API接口获取关键词商品数据的方法,为电商业务提供有力的数据支持。
|
7月前
|
前端开发
47分布式电商项目 - 商品关键字搜索
47分布式电商项目 - 商品关键字搜索
25 0
47分布式电商项目 - 商品关键字搜索
|
8月前
TienChin 渠道管理-删除渠道
TienChin 渠道管理-删除渠道
33 0