| | |
| | | @Select("<script> " + |
| | | "select id,`name`,store_id,goods_pic,images,`status`,sale,original_price,price,unit" + |
| | | ",`order`,stock,details,delivery_type from com_shop_goods as csg " + |
| | | " where 1=1 and csg.delete_status = 1 and csg.status = 1" + |
| | | " where 1=1 and csg.delete_status = 1 " + |
| | | "<if test='comShopGoodsDTO.name != null and comShopGoodsDTO.name !=""'>" + |
| | | " AND csg.`name` like concat('%',#{comShopGoodsDTO.name},'%') " + |
| | | " </if> " + |
| | | "<if test='comShopGoodsDTO.status != null '>" + |
| | | " AND csg.`status` = #{comShopGoodsDTO.status}" + |
| | | " </if> " + |
| | | "<if test='comShopGoodsDTO.storeId != null '>" + |
| | | " AND csg.store_id = #{comShopGoodsDTO.storeId} " + |
| | | " </if> " + |