码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis 之 parameterType="list"1

时间:2017-08-03 16:54:39      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:dex   parent   span   code   collect   _id   map   else   message   

/**
     * 判断当前分类产品分类的父分类是否已经添加到标签分类中,
     * 如果存在 返回true,否则,返回false
     * @param catalogId
     * @return
     */
    public ServiceMessage<Boolean> checkParentCatalogIsExistInLabel(long catalogId){
        //
        List<Long> catalogList =this.productCatalogMapper.getParentCatalogByCurrentCatalog(catalogId);
        if(null==catalogList||catalogList.size()==0){
            return super.returnCorrectResult(false);
        }else{
            long
    <select id="getProductCatalogNumFromLabel" parameterType="list" resultType="long">
    select count(1) from product_lab_catalog_goods a where a.source_type=1 and a.catalog_id in 
    <foreach collection="list" item="listItem" index="index" open="("
            separator="," close=")">
            #{listItem}
        </foreach>
    </select>

 

 =this.productLabelMapper.getProductCatalogNumFromLabel(catalogList);
            if(total>0){
                return super.returnCorrectResult(true);
            }else{
                return super.returnCorrectResult(false);
            }
        }
}

 

mybatis 之 parameterType="list"1

标签:dex   parent   span   code   collect   _id   map   else   message   

原文地址:http://www.cnblogs.com/wangchuanfu/p/7280239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!