You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.8 KiB
62 lines
2.8 KiB
package com.hfkj.dao;
|
|
|
|
import com.hfkj.entity.GoodsMsg;
|
|
import com.hfkj.model.goods.JdGoodsModel;
|
|
import com.hfkj.model.order.OrderCouponModel;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.apache.ibatis.annotations.Select;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* mapper扩展类
|
|
*/
|
|
public interface GoodsMsgMapperExt {
|
|
|
|
|
|
@Select("<script>" +
|
|
" SELECT" +
|
|
" a.goods_type_parent_name as goodsTypeParentName," +
|
|
" a.goods_type_name as goodsTypeName," +
|
|
" a.goods_brand_name as goodsBrandName," +
|
|
" a.title as title," +
|
|
" a.list_img as listImg," +
|
|
" b.sale_price as salePrice, " +
|
|
" b.third_price as thirdPrice," +
|
|
" b.original_price as originalPrice," +
|
|
" a.third_id as thirdId" +
|
|
" FROM" +
|
|
" goods_msg a join goods_specs b on a.id = b.goods_id where a.type = 1 and a.child_type=1 and a.status = 1" +
|
|
" <if test='param.goodsTypeParent != null'> and a.goods_type_parent = #{param.goodsTypeParent} </if>" +
|
|
" <if test='param.title != null'> and b.title like concat('%',#{param.title},'%') </if>" +
|
|
" <if test='param.goodsType != null'> and a.goods_type = #{param.goodsType} </if>" +
|
|
" <if test='param.goodsBrand != null'> and a.goods_brand = #{param.goodsBrand} </if>" +
|
|
" <if test='param.salePriceS != null'><![CDATA[ and b.sale_price >= #{param.salePriceS} ]]></if>" +
|
|
" <if test='param.salePriceE != null'><![CDATA[ and b.sale_price <= #{param.salePriceE} ]]></if>" +
|
|
" ORDER BY b.sale_price asc" +
|
|
"</script>")
|
|
List<JdGoodsModel> getJdGoodsList(@Param("param") Map<String,Object> param);
|
|
|
|
@Select("<script>" +
|
|
" SELECT" +
|
|
" id ," +
|
|
" title as title," +
|
|
" title as title," +
|
|
" list_img as listImg," +
|
|
" third_id as thirdId," +
|
|
" sale_num as saleNum" +
|
|
" FROM" +
|
|
" goods_msg where status = 1 and third_id is null" +
|
|
" <if test='param.goodsTypeParent != null'> and goods_type_parent = #{param.goodsTypeParent} </if>" +
|
|
" <if test='param.title != null'> and title like concat('%',#{param.title},'%') </if>" +
|
|
" <if test='param.goodsType != null'> and goods_type = #{param.goodsType} </if>" +
|
|
" <if test='param.goodsBrand != null'> and goods_brand = #{param.goodsBrand} </if>" +
|
|
" <if test='param.time != 1'>ORDER BY update_time desc</if>" +
|
|
" <if test='param.time == 1'>ORDER BY create_time desc</if>" +
|
|
" <if test='param.saleNum == 2'>, sale_num desc</if>" +
|
|
" <if test='param.limit != null'>limit #{param.limit}</if>" +
|
|
"</script>")
|
|
List<GoodsMsg> getGoodsListCrest(@Param("param") Map<String,Object> param);
|
|
|
|
} |