mybatis 之 parameterType="List" 2
<select id="queryGoodsByGoodsNoPcweb" parameterType="List" resultMap="simpleProductExtLucene">
select g.goods_no,
wp.PRODUCT_ID, p.product_name, p.drug_treatment, p.drug_prescription_type,
p.product_least_order || '' as "product_least_order", p.order_limit_amount || '' as "order_limit_amount",
wg.goods_id, g.goods_name,
g.market_price || '' as "market_price",
g.sale_amount, g.click_amount, nvl(g.available_stock,) || '' as "available_stock",
pc.pro_catalog_id || '' as "pro_catalog_id", pi.pro_image_url, tag.tag_id || '' as "tag_id",
tag.tag_icon_url,
<![CDATA[
(case when exists (
select 1
from ec_promote_rule_goods_new npg
right join ec_promote_rule_new np on npg.promote_rule_id = np.promote_rule_id
where npg.goods_id = wg.goods_id
and np.promote_client = 'wap'
and np.is_enable = 'Y'
and to_char(sysdate, 'yyyy-mm-dd hh24:mi:dd') between np.begin_time and np.end_time
)
then 'Y' else 'N' end) as MOBILE_SPECIAL,
]]>
pc.full_index,
to_number(case
when wg.discount_state = 'enable'
<!-- and wg.member_ranks = '0' -->
and to_char(sysdate, 'yyyy-mm-dd hh24:mi:dd') between wg.begin_time and wg.end_time
and wg.discount_price is not null
then
wg.discount_price
when g.discount_state = 'enable'
<!-- and g.member_ranks = '0' -->
and to_char(sysdate, 'yyyy-mm-dd hh24:mi:dd') between g.begin_time and g.end_time
and g.discount_price is not null
then
g.discount_price
else
g.ec_price
end) || ' ' as ec_price,
(case
when wg.discount_state = 'enable'
and to_char(sysdate, 'yyyy-mm-dd hh24:mi:dd') between wg.begin_time
and wg.end_time
then
wg.promote_phrase
when g.discount_state = 'enable'
and to_char(sysdate, 'yyyy-mm-dd hh24:mi:dd') between g.begin_time
and g.end_time
then
g.promote_phrase
else
''
end) as promote_phrase, pc.pro_catalog_name, wp.product_keyword, wp.PRODUCT_CHN_NO,
pb.product_brand_name, nvl(wp.product_order,) product_order
from product wp
left join product p on p.product_id = wp.product_id and p.is_delete = 'N'
left join goods wg on wp.product_id = wg.product_id and wg.is_delete = 'N' and wg.is_default = 'Y'
left join goods g on g.goods_id = wg.goods_id and g.is_delete = 'N' and g.is_default = 'Y'
left join product_catalog pc on pc.pro_catalog_id = wp.pro_catalog_id and pc.is_delete = 'N'
left join product_brand pb on pb.product_brand_id = wp.product_brand_id and pb.is_delete = 'N'
left join (
select min(pt.tag_id) as tag_id,
min(ptd.goods_id) as goods_id,
min(pt.tag_icon_url) as tag_icon_url
from product_tag_def ptd, product_tag pt
where ptd.tag_id = pt.tag_id
and pt.is_delete = 'N'
and pt.tag_type = 'icon'
group by ptd.goods_id
) tag on tag.goods_id = wg.goods_id
left join (
select pig.product_id as product_id,
min(pig.image_order),
min(pig.pro_image_url) as
pro_image_url
from wap_product_img pig
where pig.image_type = 'small'
group by pig.product_id) pi on wp.product_id = pi.product_id
where wp.is_delete = 'N'
and p.is_onsale = 'Y'
and wg.is_delete = 'N'
and wg.is_default = 'Y'
and wp.pro_catalog_id is not null
and wp.product_code NOT like 'AJ%'
and g.goods_no in
<foreach collection="list" item="listItem" index="index"
open="(" separator="," close=")" >
#{listItem,jdbcType=VARCHAR}
</foreach>
</select>
<select id="queryGoodsByGoodsNoMobile" parameterType="List" resultMap="simpleProductExtLucene">
select g.goods_no,
wp.PRODUCT_ID, p.product_name, p.drug_treatment, p.drug_prescription_type,
p.product_least_order || '' as "product_least_order", p.order_limit_amount || '' as "order_limit_amount",
wg.goods_id, g.goods_name,
g.market_price || '' as "market_price",
g.sale_amount, g.click_amount, nvl(g.available_stock,) || '' as "available_stock",
pc.pro_catalog_id || '' as "pro_catalog_id", pi.pro_image_url, tag.tag_id || '' as "tag_id",
tag.tag_icon_url,
<![CDATA[
(case when exists (
select 1
from ec_promote_rule_goods_new npg
right join ec_promote_rule_new np on npg.promote_rule_id = np.promote_rule_id
where npg.goods_id = wg.goods_id
and np.promote_client = 'wap'
and np.is_enable = 'Y'
and to_char(sysdate, 'yyyy-mm-dd hh24:mi:dd') between np.begin_time and np.end_time
)
then 'Y' else 'N' end) as MOBILE_SPECIAL,
]]>
pc.full_index,
to_number(case
when wg.discount_state = 'enable'
<!-- and wg.member_ranks = '0' -->
and to_char(sysdate, 'yyyy-mm-dd hh24:mi:dd') between wg.begin_time and wg.end_time
and wg.discount_price is not null
then
wg.discount_price
when g.discount_state = 'enable'
<!-- and g.member_ranks = '0' -->
and to_char(sysdate, 'yyyy-mm-dd hh24:mi:dd') between g.begin_time and g.end_time
and g.discount_price is not null
then
g.discount_price
else
g.ec_price
end) || ' ' as ec_price,
(case
when wg.discount_state = 'enable'
and to_char(sysdate, 'yyyy-mm-dd hh24:mi:dd') between wg.begin_time
and wg.end_time
then
wg.promote_phrase
when g.discount_state = 'enable'
and to_char(sysdate, 'yyyy-mm-dd hh24:mi:dd') between g.begin_time
and g.end_time
then
g.promote_phrase
else
''
end) as promote_phrase, pc.pro_catalog_name, wp.product_keyword, wp.PRODUCT_CHN_NO,
pb.product_brand_name, nvl(wp.product_order,) product_order
from wap_product wp
left join product p on p.product_id = wp.product_id and p.is_delete = 'N'
left join wap_goods wg on wp.product_id = wg.product_id and wg.is_delete = 'N' and wg.is_default = 'Y'
left join goods g on g.goods_id = wg.goods_id and g.is_delete = 'N' and g.is_default = 'Y'
left join product_catalog pc on pc.pro_catalog_id = wp.pro_catalog_id and pc.is_delete = 'N'
left join product_brand pb on pb.product_brand_id = wp.product_brand_id and pb.is_delete = 'N'
left join (
select min(pt.tag_id) as tag_id,
min(ptd.goods_id) as goods_id,
min(pt.tag_icon_url) as tag_icon_url
from product_tag_def ptd, product_tag pt
where ptd.tag_id = pt.tag_id
and pt.is_delete = 'N'
and pt.tag_type = 'icon'
group by ptd.goods_id
) tag on tag.goods_id = wg.goods_id
left join (
select pig.product_id as product_id,
min(pig.image_order),
min(pig.pro_image_url) as
pro_image_url
from wap_product_img pig
where pig.image_type = 'small'
group by pig.product_id) pi on wp.product_id = pi.product_id
where wp.is_delete = 'N'
and p.is_onsale = 'Y'
and wg.is_delete = 'N'
and wg.is_default = 'Y'
and wp.pro_catalog_id is not null
and wp.product_code NOT like 'AJ%'
and g.goods_no in
<foreach collection="list" item="listItem" index="index"
open="(" separator="," close=")" >
#{listItem,jdbcType=VARCHAR}
</foreach>
</select>
public List<Map<String, Object>> queryGoodsByGoodsNoPcweb(List<String> goodsNos);
public ServiceMessage<List<Map<String, Object>>> queryGoodsListByGoodsNoList(List<String> goodsNoList, SiteType siteType) {
try {
if (goodsNoList == null || goodsNoList.size() < 1) {
return super.returnParamsError("接收到的goodsNoList(" + goodsNoList + ")为空");
} else if (goodsNoList.get(0) == null || "".equals(goodsNoList.get(0).trim())) {
return super.returnParamsError("接收到的goodsNoList(" + goodsNoList.get(0) + ")元素为空");
} else if (siteType == null) {
return super.returnParamsError("接收到的SiteType(" + siteType + ")元素为空");
}
List<Map<String, Object>> goodsList = null;
if (SiteType.PCWEB.equals(siteType)) {
goodsList = goodsMapper.queryGoodsByGoodsNoPcweb(goodsNoList);
} else if (SiteType.MOBILE.equals(siteType)) {
goodsList = goodsMapper.queryGoodsByGoodsNoMobile(goodsNoList);
}
return super.returnCorrectResult(goodsList);
} catch (Throwable e) {
return super.returnException(e);
}
}
mybatis 之 parameterType="List" 2的更多相关文章
- mybatis中parameterType可以写的别名
mybatis中parameterType可以写的别名 https://blog.csdn.net/sdzhangshulong/article/details/51749807 _byte byte ...
- mybatis的parameterType使用map实现真正的sql随意写
在dao层给map赋值 纠正一下应该把dd作为传入而不是sbiId; sqlMap中的parameterType="java.util.Map", 就 OK package com ...
- 【JAVA - SSM】之MyBatis的ParameterType的使用
在MyBatis的Mapper.xml文件中,参数的表示方法有两种:一种是使用 "#{XXX}" 的方式表示的,另一种是使用 "${XXX}" 的方式表示的.今 ...
- MyBatis mapper parameterType
1. 传入简单类型 JAVA代码: public User get(Long id) { return (User) getSqlSession().selectOne("com.liu ...
- Mybatis中parameterType、resultMap、statementType等等配置详解(标签中基本配置详解)
一.(转自:https://blog.csdn.net/majinggogogo/article/details/72123185) 映射文件是以<mapper>作为根节点,在根节点中支持 ...
- mybatis之parameterType传递多个参数
当在查询的时候需要传入多个参数的时候该怎么办呢: 1,封装成一个Model对象,底层HashMap还是一个 User user=new User(); user.setUserName("z ...
- MyBatis的parameterType传入参数类型
在mybatis映射接口的配置中,有select,insert,update,delete等元素都提到了parameterType的用法,parameterType为输入参数,在配置的时候,配置相应的 ...
- 【JavaEE】之MyBatis的ParameterType的使用
在MyBatis的Mapper.xml文件中,参数的表示方法有两种:一种是使用 “#{XXX}” 的方式表示的,另一种是使用 “${XXX}” 的方式表示的.今天来介绍以下这两种方式的不同之处. 1. ...
- Mybatis的parameterType传入多个参数
如果查询的条件有多个的时候,mybatis有三种传入方式: 1.通过注解传入 例如: public interface Mapper(){ public User login(@Param(" ...
- mybatis 之 parameterType="String" resultType="java.util.HashMap">
public ServiceMessage<Map<String, String>> getGoodsStockNo( List<Map<String, Strin ...
随机推荐
- Ogre1.9 源码编译
我们首先需要下载. 1.cmake http://www.cmake.org/download/ (选择window安装包最方便) 2.Ogre1.9源代码 https://bitbucket.org ...
- 第三百七十八节,Django+Xadmin打造上线标准的在线教育平台—django自带的admin后台管理介绍
第三百七十八节,Django+Xadmin打造上线标准的在线教育平台—django自带的admin后台管理介绍 配置django的admin数据库管理后台 首先urls.py配置数据库后台路由映射,一 ...
- Eclipse初次java开发问题总结-3
上篇中提到解决的一个问题是mysql驱动报的: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link ...
- mysql存储过程----临时表 temporary
在存储过程中可以使用临时表,下面有一个分割字符串的例子 语法 1.创建:create temporary table 表名(列信息); 2.删除:drop table 表名; 3.清空:truncat ...
- 指定webapi 返回 json 格式 ; GlobalConfiguration.Configuration.Formatters.Clear()
因为 Internet Explorer 和 Firefox 发送了不同的 Accept 头,所以 web API 在响应里就发送了不同的内容类型. 解决方法,在 Global.asax的 App ...
- Js正则校验身份证号码
原文链接:http://gongwen.sinaapp.com/article-126-cmd 这个其实不难,在网上多找一下总会有意外收获的.但是工欲善其事,必先利其器.我们需要了解一下身份证号的规则 ...
- python模块之 - subprocess执行unix/linux命令
subprocess模块提供了一种一致的方法来创建和处理附加进程,与标准库中的其它模块相比,提供了一个更高级的接口,subprocess模块用来生成子进程,并可以通过管道连接它们的输入/输出/错误,以 ...
- 多目标线性规划求解方法及matlab实现
转载: https://blog.csdn.net/wzl1997/article/details/79120323
- u3d changeTexs
using UnityEngine; using System.Collections; using System.Collections.Generic; public class CTex : M ...
- Bulestacks模拟器Bulestacks.prop文件里中英文对照表
打开“Bulestacks.prop”文件后可以看到以下内容,根据中英文对照表来修改即可. # begin build properties (开始设置系统性能)# autogenerated by ...