使用MVP模式+OKHttp网络请求 带编辑删除的购物车

来源:互联网 发布:淘宝网伟邦碎砖伸缩棍 编辑:程序博客网 时间:2024/06/01 09:36

类还有MVP模式的图片 记得加values的两个文件



把依赖包导进去

compile 'com.github.bumptech.glide:glide:3.7.0'compile 'com.squareup.okhttp3:okhttp:3.9.0'compile 'com.google.code.gson:gson:2.8.1'compile 'com.jakewharton:butterknife:8.5.1'annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'compile 'com.android.support:recyclerview-v7:25.0.0'compile 'com.squareup.retrofit2:retrofit:2.3.0'//retrofit依赖compile 'com.squareup.retrofit2:converter-gson:2.3.0'//retrofit内部封装的GSONcompile "io.reactivex.rxjava2:rxjava:2.1.7"compile "com.squareup.retrofit2:adapter-rxjava2:2.3.0"compile 'io.reactivex.rxjava2:rxandroid:2.0.1'compile 'com.facebook.fresco:fresco:0.12.0'compile 'com.facebook.fresco:animated-base-support:0.12.0'compile 'com.facebook.fresco:animated-webp:0.12.0'compile 'com.facebook.fresco:webpsupport:0.12.0'compile 'com.jcodecraeer:xrecyclerview:1.3.2'

把权限加进去

<uses-permission android:name="android.permission.INTERNET" /><uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /><uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />


布局文件

activity_main

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical"    tools:context="wangbo.bawei.com.my20171220gou.MainActivity">    <!--头布局-->    <LinearLayout        android:id="@+id/top_bar"        android:layout_width="match_parent"        android:layout_height="48dp"        android:background="#f7f7f7"        android:orientation="vertical" >        <RelativeLayout            android:layout_width="match_parent"            android:layout_height="48dp"            android:background="@android:color/transparent"            android:orientation="vertical" >            <ImageView                android:id="@+id/back"                android:layout_width="48dp"                android:layout_height="48dp"                android:layout_alignParentLeft="true"                android:layout_gravity="center_vertical"                android:padding="12dp"                />            <TextView                android:layout_width="match_parent"                android:layout_height="wrap_content"                android:gravity="center"                android:minHeight="48dp"                android:text="购物车"                android:textColor="#1a1a1a"                android:textSize="16sp" />            <TextView                android:id="@+id/edit"                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:layout_alignParentRight="true"                android:layout_marginRight="40dp"                android:gravity="center"                android:minHeight="48dp"                android:text="编辑"                android:textColor="#1a1a1a"                android:textSize="14sp"                android:visibility="visible" />        </RelativeLayout>    </LinearLayout>    <ExpandableListView        android:id="@+id/exListView"        android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_weight="1"        android:childIndicator="@null"        android:groupIndicator="@null" >    </ExpandableListView>    <LinearLayout        android:layout_width="match_parent"        android:layout_height="50dp"        android:gravity="center_vertical"        android:orientation="horizontal" >        <CheckBox            android:id="@+id/all_chekbox"            android:layout_marginLeft="20dp"            android:layout_width="wrap_content"            android:layout_height="wrap_content" />        <TextView            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="全选"/>        <LinearLayout            android:id="@+id/ll_info"            android:layout_width="0dp"            android:layout_height="wrap_content"            android:layout_weight="4"            >            <LinearLayout                android:layout_width="match_parent"                android:layout_height="wrap_content"                android:orientation="vertical"                android:layout_marginRight="20dp"                android:layout_weight="1"                >                <LinearLayout                    android:layout_width="match_parent"                    android:layout_height="wrap_content"                    android:orientation="horizontal"                    android:gravity="right"                    >                    <TextView                        android:layout_width="wrap_content"                        android:layout_height="wrap_content"                        android:layout_marginLeft="5dp"                        android:text="合计:"                        android:textSize="18sp"                        android:textStyle="bold" />                    <TextView                        android:id="@+id/total_price"                        android:layout_width="wrap_content"                        android:layout_height="wrap_content"                        android:text="0.00"                        android:textColor="#f23232"                        android:textSize="16sp"                        android:textStyle="bold" />                </LinearLayout>                <TextView                    android:id="@+id/total_number"                    android:layout_width="match_parent"                    android:layout_height="wrap_content"                    android:text="共有商品:0"                    android:gravity="right"                    android:textSize="16sp"                    android:textStyle="bold" />            </LinearLayout>            <TextView                android:id="@+id/tv_go_to_pay"                android:layout_width="match_parent"                android:layout_height="match_parent"                android:layout_weight="3"                android:background="#fd7a05"                android:clickable="true"                android:gravity="center"                android:text="结算"                android:textColor="#FAFAFA"                />        </LinearLayout>    </LinearLayout>    </LinearLayout>

activity_main_2


<?xml version="1.0" encoding="utf-8"?><android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    tools:context="wangbo.bawei.com.my20171220gou.Main2Activity"></android.support.constraint.ConstraintLayout>


activity_main_3

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    tools:context="wangbo.bawei.com.my20171220gou.Main3Activity">    <com.jcodecraeer.xrecyclerview.XRecyclerView        android:id="@+id/recy"        android:layout_width="match_parent"        android:layout_height="match_parent">    </com.jcodecraeer.xrecyclerview.XRecyclerView></RelativeLayout>

ex_chid_item   下面布局文件需要更改为自己的包名


<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="horizontal"    xmlns:app="http://schemas.android.com/apk/res-auto">    <CheckBox        android:id="@+id/child_checkbox"        android:layout_marginTop="50dp"        android:layout_marginLeft="20dp"        android:layout_marginBottom="50dp"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        />    <RelativeLayout        android:layout_marginLeft="20dp"        android:layout_width="match_parent"        android:layout_height="match_parent">        <TextView            android:id="@+id/shop_title"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_alignParentLeft="true"            android:layout_alignParentStart="true"            android:layout_marginLeft="17dp"            android:layout_marginStart="17dp"            android:text="TextView"            android:layout_alignParentTop="true" />        <ImageView            android:id="@+id/shop_img"            android:layout_width="90dp"            android:layout_height="90dp"            android:layout_marginTop="30dp"            app:srcCompat="@mipmap/ic_launcher"            android:layout_below="@+id/shop_name"            android:layout_alignParentLeft="true"            android:layout_alignParentStart="true" />        <TextView            android:id="@+id/shop_price"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_alignTop="@+id/shop_img"            android:layout_centerHorizontal="true"            android:layout_marginTop="10dp"            android:text="20"            android:textColor="#f23232"/>        <wangbo.bawei.com.my20171220gou.view.AddDeleteView    //切记这里是自己的包名类名            android:id="@+id/adv"            android:layout_width="160dp"            android:layout_height="30dp"            android:layout_below="@+id/shop_price"            android:layout_marginTop="30dp"            android:layout_marginLeft="140dp"            app:left_text="-"            app:right_text="+"            app:middle_text="1"            android:focusable="false"            >        </wangbo.bawei.com.my20171220gou.view.AddDeleteView>        <Button            android:id="@+id/shop_delete"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_alignParentEnd="true"            android:layout_alignParentRight="true"            android:layout_centerVertical="true"            android:visibility="invisible"            android:text="删除" />    </RelativeLayout></LinearLayout>

ex_group_item

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:background="#cfc3c3"    android:orientation="horizontal">    <CheckBox        android:id="@+id/group_checkbox"        android:layout_marginLeft="20dp"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:focusable="false"/>    <TextView        android:id="@+id/shop_name"        android:layout_marginLeft="20dp"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:textSize="16dp" /></LinearLayout>

item

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent">    <ImageView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:id="@+id/img"/></LinearLayout>

layout_add_delete

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="horizontal"    android:weightSum="1">    <TextView        android:id="@+id/txt_delete"        android:layout_width="30dp"        android:layout_height="30dp"        android:text="-"        android:gravity="center"        android:background="#8b948b"/>    <EditText        android:id="@+id/et_number"        android:layout_marginTop="2dp"        android:layout_width="50dp"        android:layout_height="40dp"        android:layout_weight="0.00"        android:gravity="center"        android:text="1"/>    <TextView        android:id="@+id/txt_add"        android:layout_width="30dp"        android:layout_height="30dp"        android:text="+"        android:gravity="center"        android:background="#8b948b"/></LinearLayout>

Values文件夹下的文件

attrs


<?xml version="1.0" encoding="utf-8"?><resources>    <declare-styleable name="AddDeleteViewStyle">        <attr name="left_text" format="string"></attr>        <attr name="right_text" format="string"></attr>        <attr name="middle_text" format="string"></attr>        <attr name="left_text_color" format="color"></attr>    </declare-styleable></resources>

dimens

<?xml version="1.0" encoding="utf-8"?><resources>    <dimen name="activity_horizontal_margin">16dp</dimen>    <dimen name="activity_vertical_margin">16dp</dimen></resources>

接下来是代码

adapter文件夹下的两个类


ExpandableAdapter


package wangbo.bawei.com.my20171220gou.adapter;import android.content.Context;import android.view.View;import android.view.ViewGroup;import android.widget.BaseExpandableListAdapter;import android.widget.Button;import android.widget.CheckBox;import android.widget.ImageView;import android.widget.TextView;import com.bumptech.glide.Glide;import java.util.ArrayList;import java.util.List;import wangbo.bawei.com.my20171220gou.MainActivity;import wangbo.bawei.com.my20171220gou.R;import wangbo.bawei.com.my20171220gou.bean.ChildBean;import wangbo.bawei.com.my20171220gou.bean.GroupBean;import wangbo.bawei.com.my20171220gou.view.AddDeleteView;/** * Created by 杨文倩 on 2017/12/11. */public class ExpandableAdapter extends BaseExpandableListAdapter {// private static final String TAG = "ExpandableAdapter二级列表适配器";    private Context context;    private List<GroupBean> groupBeen=new ArrayList<>();    private List<List<ChildBean>> childBeen=new ArrayList<>();    public ExpandableAdapter(Context context, List<GroupBean> groupBeen, List<List<ChildBean>> childBeen) {        this.context = context;        this.groupBeen = groupBeen;        this.childBeen = childBeen;    }    @Override    public int getGroupCount() {        return groupBeen.size();    }    @Override    public int getChildrenCount(int i) {        return childBeen.get(i).size();    }    @Override    public Object getGroup(int i) {        return groupBeen.get(i).getSellerName();    }    @Override    public Object getChild(int i, int i1) {        return childBeen.get(i).get(i1).getTitle();    }    @Override    public long getGroupId(int i) {        return i;    }    @Override    public long getChildId(int i, int i1) {        return i1;    }    @Override    public boolean hasStableIds() {        return false;    }    //一级组    @Override    public View getGroupView(final int i, boolean b, View view, ViewGroup viewGroup) {        //加载视图        view=View.inflate(context, R.layout.ex_group_item ,null);        final CheckBox groupCb= (CheckBox) view.findViewById(R.id.group_checkbox);        TextView shopName= (TextView) view.findViewById(R.id.shop_name);        shopName.setText(groupBeen.get(i).getSellerName());        groupCb.setChecked(groupBeen.get(i).isGropuCb());        //组复选按钮        groupCb.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View view) {                boolean gchecked = groupCb.isChecked();                groupBeen.get(i).setGropuCb(gchecked);                MainActivity main= (MainActivity) context;                for(GroupBean i: groupBeen){                    boolean gropuCb = i.isGropuCb();                    if(!gropuCb){                        main.allCheckbox.setChecked(false);                        break;                    }else{                        main.allCheckbox.setChecked(true);                    }                }                int size = childBeen.get(i).size();                if(gchecked){                    for(int r=0;r<size;r++){                        //Toast.makeText(context,"group按钮"+ gchecked+""+size, Toast.LENGTH_SHORT).show();                        childBeen.get(i).get(r).setChildCb(true);                    }                }else{                    for(int r=0;r<size;r++){                        //Toast.makeText(context,"group按钮"+ gchecked+""+size, Toast.LENGTH_SHORT).show();                        childBeen.get(i).get(r).setChildCb(false);                    }                }                notifyDataSetChanged();                main.changesum(childBeen);            }        });        return view;    }    //二级组    @Override    public View getChildView(final int i, final int i1, boolean b, View v, ViewGroup viewGroup) {        //加载视图        v=View.inflate(context, R.layout.ex_child_item ,null);        final CheckBox childCb = (CheckBox) v.findViewById(R.id.child_checkbox);        TextView shopTitle= (TextView) v.findViewById(R.id.shop_title);        TextView shopPrice= (TextView) v.findViewById(R.id.shop_price);        ImageView shopImg= (ImageView) v.findViewById(R.id.shop_img);        final AddDeleteView adv = (AddDeleteView) v.findViewById(R.id.adv);        Button shop_delete= (Button) v.findViewById(R.id.shop_delete);        childCb.setChecked(childBeen.get(i).get(i1).isChildCb());        Glide.with(context).load(childBeen.get(i).get(i1).getImages()).into(shopImg);        shopTitle.setText(childBeen.get(i).get(i1).getTitle());        shopPrice.setText(childBeen.get(i).get(i1).getPrice()+"");        adv.setNumber(childBeen.get(i).get(i1).getNum());        final MainActivity main= (MainActivity) context;        //控制删除按钮的显隐        if(childBeen.get(i).get(i1).isBtn()){            shop_delete.setVisibility(View.VISIBLE);        }else{            shop_delete.setVisibility(View.INVISIBLE);        }        //删除按钮监听        shop_delete.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View view) {                int size = childBeen.get(i).size();                if(size==1){                    childBeen.remove(i);                    groupBeen.remove(i);                }else{                    childBeen.get(i).remove(i1);                }                //点击删除后隐藏所有删除按钮                for (List<ChildBean> i1:childBeen){                    for(int r=0;r<i1.size();r++) {                        i1.get(r).setBtn(false);                    }                }                notifyDataSetChanged();                main.changesum(childBeen);            }        });        //加减器逻辑        adv.setOnAddDelClickListener(new AddDeleteView.OnAddDelClickListener() {            @Override            public void onAddClick(View v) {                int number = adv.getNumber();                number++;                adv.setNumber(number);                childBeen.get(i).get(i1).setNum(number);                main.changesum(childBeen);            }            @Override            public void onDelClick(View v) {                int number = adv.getNumber();                number--;                adv.setNumber(number);                childBeen.get(i).get(i1).setNum(number);                main.changesum(childBeen);            }        });        //二级组的复选框监听        childCb.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View view) {                boolean flag=false;                boolean cchecked = childCb.isChecked();                childBeen.get(i).get(i1).setChildCb(cchecked);                //Toast.makeText(context,"child按钮"+ cchecked+""+i1, Toast.LENGTH_SHORT).show();                MainActivity main= (MainActivity) context;                for (List<ChildBean> i1:childBeen){                    for(int r=0;r<i1.size();r++) {                        boolean childCb1 = i1.get(r).isChildCb();                        if(!childCb1){                            main.allCheckbox.setChecked(false);                            groupBeen.get(i).setGropuCb(false);                            flag=true;                            break;                        }else{                            main.allCheckbox.setChecked(true);                            groupBeen.get(i).setGropuCb(true);                        }                    }                    if(flag){                        break;                    }                }                int size = childBeen.get(i).size();                for(int x=0;x<size;x++) {                    boolean childCb1 = childBeen.get(i).get(x).isChildCb();                    if(!childCb1){                        groupBeen.get(i).setGropuCb(false);                        break;                    }else{                        groupBeen.get(i).setGropuCb(true);                    }                }                notifyDataSetChanged();                main.changesum(childBeen);            }        });        return v;    }    @Override    public boolean isChildSelectable(int i, int i1) {        return false;    }}

MyAdapter

package wangbo.bawei.com.my20171220gou.adapter;import android.content.Context;import android.support.v7.widget.RecyclerView;import android.view.View;import android.view.ViewGroup;import android.widget.ImageView;import com.bumptech.glide.Glide;import java.util.List;import wangbo.bawei.com.my20171220gou.R;import wangbo.bawei.com.my20171220gou.bean.ImageBean;/** * Created by 杨文倩 on 2017/12/11. */public class MyAdapter extends RecyclerView.Adapter<MyAdapter.ViewHolder> {    List<ImageBean.DataBean.DefaultGoodsListBean> listBeen;    Context context;    public MyAdapter(List<ImageBean.DataBean.DefaultGoodsListBean> listBeen, Context context) {        this.listBeen = listBeen;        this.context = context;    }    public interface OnItemClieckLinster{        void onItemClickListener(View view, int pos);        void onItemLongClickListener(View view, int pos);    }    private  OnItemClieckLinster onItemClieckLinster;    public void setOnItemClieckLinster(OnItemClieckLinster listener){        this.onItemClieckLinster = listener;    }    @Override    public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {        View view= View.inflate(context, R.layout.item,null);        ViewHolder vh=new ViewHolder(view);        return vh;    }    @Override    public void onBindViewHolder(final ViewHolder holder, final int position) {        Glide.with(context).load(listBeen.get(position).getGoods_img()).into(holder.img);        //   holder.text2.setText(listBeen.get(position).getTitle());       /* holder.text.setText(listBeen.get(position).getGoods_name());         holder.text2.setText(listBeen.get(position).getEfficacy());*/        if(onItemClieckLinster != null){            //onitemclicklistener            holder.itemView.setOnClickListener(new View.OnClickListener() {                @Override                public void onClick(View view) {                    onItemClieckLinster.onItemClickListener(holder.itemView , position);                }            });            //onitemlongclicklistener            holder.itemView.setOnLongClickListener(new View.OnLongClickListener() {                @Override                public boolean onLongClick(View view) {                    onItemClieckLinster.onItemLongClickListener(holder.itemView , position);                    return false;                }            });        }    }    @Override    public int getItemCount() {        return listBeen.size();    }    class  ViewHolder extends RecyclerView.ViewHolder{        ImageView img;        //TextView text,text2;        public ViewHolder(View itemView) {            super(itemView);            img=(ImageView)itemView.findViewById(R.id.img);            /*text=(TextView)itemView.findViewById(R.id.text);            text2=(TextView)itemView.findViewById(R.id.text2);*/        }    }}

Bean类

ChildBean

package wangbo.bawei.com.my20171220gou.bean;/** * Created by 杨文倩 on 2017/12/11. */public class ChildBean {    private String title;    private String images;    private double price;    private int num;    private boolean childCb;    private boolean btn;    public ChildBean(String title, String images, double price, int num, boolean childCb, boolean btn) {        this.title = title;        this.images = images;        this.price = price;        this.num = num;        this.childCb = childCb;        this.btn = btn;    }    public boolean isBtn() {        return btn;    }    public void setBtn(boolean btn) {        this.btn = btn;    }    public String getTitle() {        return title;    }    public void setTitle(String title) {        this.title = title;    }    public String getImages() {        return images;    }    public void setImages(String images) {        this.images = images;    }    public double getPrice() {        return price;    }    public void setPrice(double price) {        this.price = price;    }    public int getNum() {        return num;    }    public void setNum(int num) {        this.num = num;    }    public boolean isChildCb() {        return childCb;    }    public void setChildCb(boolean childCb) {        this.childCb = childCb;    }    @Override    public String toString() {        return "ChildBean{" +                "title='" + title + '\'' +                ", images='" + images + '\'' +                ", price=" + price +                ", num=" + num +                ", childCb=" + childCb +                '}';    }}

GroupBean

package wangbo.bawei.com.my20171220gou.bean;/** * Created by 杨文倩 on 2017/12/11. */public class GroupBean {    private String sellerName;    private boolean gropuCb;    public GroupBean(String sellerName, boolean gropuCb) {        this.sellerName = sellerName;        this.gropuCb = gropuCb;    }    public String getSellerName() {        return sellerName;    }    public void setSellerName(String sellerName) {        this.sellerName = sellerName;    }    public boolean isGropuCb() {        return gropuCb;    }    public void setGropuCb(boolean gropuCb) {        this.gropuCb = gropuCb;    }    @Override    public String toString() {        return "GroupBean{" +                "sellerName='" + sellerName + '\'' +                ", gropuCb=" + gropuCb +                '}';    }}

ImageBean

package wangbo.bawei.com.my20171220gou.bean;import java.util.List;/** * Created by 杨文倩 on 2017/12/11. */public class ImageBean {    /**     * code : 200     * msg : success     * data : {"subjects":[{"id":"84","title":"新品上市","detail":"质本天然,探寻自然生命的非凡能量,给\u201c躁动\u201d的肌肤一场新的旅行~~","image":"https://image.yunifang.com/yunifang/images/goods/temp/171011162655217457875119759.jpg","start_time":"2017.05.16 09:26:13","end_time":"2017.10.31 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609265319705925918251.jpg","template":"templateDefault","goodsList":[{"id":"492","goods_name":"盈透美肌黑膜套装(插画版)","shop_price":99.9,"market_price":298,"goods_img":"https://image.yunifang.com/yunifang/images/goods/492/goods_img/171011191068814258195256706.jpg","reservable":false,"efficacy":"以黑吸黑 润透亮颜","stock_number":0,"restrict_purchase_num":0,"goodsName":"PG one热荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011192212214258195254179.jpg","description":"三重植物精粹,三重水润膜力,美时美刻,水润透亮~"},{"id":"2076","goods_name":"鲜嫩美莓面膜套装","shop_price":129.9,"market_price":299,"goods_img":"https://image.yunifang.com/yunifang/images/goods/2076/goods_img/170930212555714134276722977.jpg","reservable":false,"efficacy":"果然水润 嫩颜美莓","stock_number":0,"restrict_purchase_num":0,"goodsName":"水润指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119283583452898243380.jpg","description":"畅享鲜果派对,肌肤水嫩鲜活,萃取自然野草莓、黑莓、巴西莓精华,三款搭配持续水嫩鲜活~"},{"id":"1189","goods_name":"清透盈润面膜套装21","shop_price":79.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1189/goods_img/17093019432252555150652465.jpg","reservable":false,"efficacy":"水感剔透 鲜颜嫩肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"鲜嫩指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119312216937168845205.jpg","description":"精选玫瑰、竹萃自然精粹,清洁力、补水力、亮泽度全新升级,另肌肤水感剔透~"},{"id":"1638","goods_name":"全新升级丨嫩肌酵素黑膜礼盒21","shop_price":139.9,"market_price":299,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1638/goods_img/170905151496114997886544712.jpg","reservable":false,"efficacy":"极地酵素 \u201c\u201d醒美肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"推荐指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170905182614314997886548523.jpg","description":"蕴含南极活性补水酵素精华,持久补水锁水,轻蔬鲜果酵素助力平衡水油~"},{"id":"1830","goods_name":"新品尝鲜|水润茶萃微囊黑面膜20","shop_price":129.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1830/goods_img/17063017284962337647468682.jpg","reservable":false,"efficacy":"只要一片 水润一天","stock_number":0,"restrict_purchase_num":0,"goodsName":"新品推荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1705240026717476518778188.jpg","description":"茶萃微囊精华,开创持续保湿新体验,只要一片,水润一天,持续保湿12小时以上"},{"id":"2091","goods_name":"新品上市丨V7伪妆素颜霜20g","shop_price":79,"market_price":79,"goods_img":"https://image.yunifang.com/yunifang/images/goods/2091/goods_img/170905172822119555059792173.jpg","reservable":false,"efficacy":"即刻提亮 闪亮肤色","stock_number":0,"restrict_purchase_num":0,"goodsName":"遮瑕指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709051825818467283561992.jpg","description":"如果你是素颜控,这款即刻提亮,闪亮肤色的懒人新品素颜霜你值得拥有~"},{"id":"2039","goods_name":"水润柔嫩黑膜21","shop_price":89.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/2039/goods_img/17093020002498271170145819.jpg","reservable":false,"efficacy":"自然纯粹 水润纯净","stock_number":0,"restrict_purchase_num":0,"goodsName":"补水指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011193181418890895139029.jpg","description":"精选龙头竹菁萃、牛油果精粹、黑珍珠精粹,给你自然纯粹,水润纯净体验~"},{"id":"745","goods_name":"全新升级丨晶亮红石榴面膜7","shop_price":79,"market_price":89,"goods_img":"https://image.yunifang.com/yunifang/images/goods/745/goods_img/17081617418998795654179347.jpg","reservable":false,"efficacy":"深度排浊 一扫黯哑","stock_number":0,"restrict_purchase_num":0,"goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170816184151311258603701437.jpg","description":"萃取红石榴原液,滴滴蕴含鲜活能量,清洁排浊、透亮无瑕,改善粗糙黯哑小能手"},{"id":"1870","goods_name":"新品尝鲜|玉润雪肌黑白膜盒20","shop_price":129.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1870/goods_img/17071909555120332464127704.jpg","reservable":false,"efficacy":"黑白膜力 美肌如玉","stock_number":0,"restrict_purchase_num":0,"goodsName":"新品推荐:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707171037861467283567706.jpg","description":"白膜胶原蛋白精华,昼弹润生态库,黑膜三分子玻尿酸,夜补水先锋。黑白膜力,水肌如玉~"},{"id":"1919","goods_name":"透亮红酒酵力面膜21","shop_price":129.9,"market_price":239,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1919/goods_img/170630171021217601465422538.jpg","reservable":false,"efficacy":"红酒透亮 酵醒美肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224599017601465422520.jpg","description":"全新添加西班牙酵母发酵液,融合法国红酒多酚亮肤成分,加乘亮肤功效~"},{"id":"772","goods_name":"全新升级丨清润莹亮黑膜套装21","shop_price":99.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/772/goods_img/17090514228269026987111180.jpg","reservable":false,"efficacy":"自然莹亮 水感瓷肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"水亮能量:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709191414112467283564077.jpg","description":"自然莹亮,水感瓷肌,精选龙头竹、葡萄籽,演绎水亮二重奏~"},{"id":"487","goods_name":"海洋弹性蛋白矿物精华眼霜25g","shop_price":139,"market_price":169,"goods_img":"https://image.yunifang.com/yunifang/images/goods/487/goods_img/170626101843492134395965.jpg","reservable":false,"efficacy":"提拉紧致 润亮双眸","stock_number":0,"restrict_purchase_num":0,"goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151917130467283566572.jpg","description":"不要等到有皱纹了才想起用眼霜,不要让眼睛放大你的年龄,每一滴自然精粹,都为你打造明亮双眸~"},{"id":"1281","goods_name":"新品眼霜丨红石榴矿物眼霜25g","shop_price":129,"market_price":159,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1281/goods_img/170626102555811776047044227.jpg","reservable":false,"efficacy":"淡退黑眼圈 净彻排浊","stock_number":0,"restrict_purchase_num":0,"goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151918330467283566999.jpg","description":"熊猫眼克星!多种植物精粹,天然舒活肌肤水通道,清爽不油腻,好吸收,和细纹说拜拜~"}],"goodsIdsList":["492","2076","1923","1189","1638","1830","2091","2039","745","1870","1919","772","1280","487","1281","1250"],"goodsRelationList":[{"id":"14815","subject_id":"84","goods_id":"492","goodsName":"PG one热荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011192212214258195254179.jpg","description":"三重植物精粹,三重水润膜力,美时美刻,水润透亮~"},{"id":"14816","subject_id":"84","goods_id":"2076","goodsName":"水润指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119283583452898243380.jpg","description":"畅享鲜果派对,肌肤水嫩鲜活,萃取自然野草莓、黑莓、巴西莓精华,三款搭配持续水嫩鲜活~"},{"id":"14817","subject_id":"84","goods_id":"1923","goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170816184068619872110797032.jpg","description":"真美白,匠心造!全新升级美白嫩肤面膜,多种美白成分助力美白,国家权威美白特证安全放心~"},{"id":"14818","subject_id":"84","goods_id":"1189","goodsName":"鲜嫩指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119312216937168845205.jpg","description":"精选玫瑰、竹萃自然精粹,清洁力、补水力、亮泽度全新升级,另肌肤水感剔透~"},{"id":"14819","subject_id":"84","goods_id":"1638","goodsName":"推荐指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170905182614314997886548523.jpg","description":"蕴含南极活性补水酵素精华,持久补水锁水,轻蔬鲜果酵素助力平衡水油~"},{"id":"14820","subject_id":"84","goods_id":"1830","goodsName":"新品推荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1705240026717476518778188.jpg","description":"茶萃微囊精华,开创持续保湿新体验,只要一片,水润一天,持续保湿12小时以上"},{"id":"14821","subject_id":"84","goods_id":"2091","goodsName":"遮瑕指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709051825818467283561992.jpg","description":"如果你是素颜控,这款即刻提亮,闪亮肤色的懒人新品素颜霜你值得拥有~"},{"id":"14822","subject_id":"84","goods_id":"2039","goodsName":"补水指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011193181418890895139029.jpg","description":"精选龙头竹菁萃、牛油果精粹、黑珍珠精粹,给你自然纯粹,水润纯净体验~"},{"id":"14823","subject_id":"84","goods_id":"745","goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170816184151311258603701437.jpg","description":"萃取红石榴原液,滴滴蕴含鲜活能量,清洁排浊、透亮无瑕,改善粗糙黯哑小能手"},{"id":"14824","subject_id":"84","goods_id":"1870","goodsName":"新品推荐:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707171037861467283567706.jpg","description":"白膜胶原蛋白精华,昼弹润生态库,黑膜三分子玻尿酸,夜补水先锋。黑白膜力,水肌如玉~"},{"id":"14825","subject_id":"84","goods_id":"1919","goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224599017601465422520.jpg","description":"全新添加西班牙酵母发酵液,融合法国红酒多酚亮肤成分,加乘亮肤功效~"},{"id":"14826","subject_id":"84","goods_id":"772","goodsName":"水亮能量:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709191414112467283564077.jpg","description":"自然莹亮,水感瓷肌,精选龙头竹、葡萄籽,演绎水亮二重奏~"},{"id":"14827","subject_id":"84","goods_id":"1280","goodsName":"遮瑕指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609285005287026507049.jpg","description":"日本进口粉扑,云母成分强遮瑕,接触肌肤绵密柔软,粉体细腻,妆感轻薄,完美遮瑕~"},{"id":"14828","subject_id":"84","goods_id":"487","goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151917130467283566572.jpg","description":"不要等到有皱纹了才想起用眼霜,不要让眼睛放大你的年龄,每一滴自然精粹,都为你打造明亮双眸~"},{"id":"14829","subject_id":"84","goods_id":"1281","goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151918330467283566999.jpg","description":"熊猫眼克星!多种植物精粹,天然舒活肌肤水通道,清爽不油腻,好吸收,和细纹说拜拜~"},{"id":"14830","subject_id":"84","goods_id":"1250","goodsName":"抗氧化指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706021026770467283563014.jpg","description":"你的梳妆台必不可少一瓶面霜,告别熬夜和岁月留下的黄脸,为肌肤注入鲜活能量。"}],"url":"http://h.yunifang.com/goods/subject.html?id=84","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=84"},{"id":"85","title":"玫瑰系列","detail":"大马士革玫瑰 ,天然补水之选\n沙漠玫瑰 ,优质锁水之源\n打造花漾透润,奢宠水嫩肌","image":"https://image.yunifang.com/yunifang/images/goods/temp/17051609349138679665088294.jpg","start_time":"2017.05.16 09:34:46","end_time":"2017.10.31 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609348383766880399479.jpg","template":"templateDefault","goodsList":[{"id":"16","goods_name":"热销套装丨玫瑰滋养保湿四件套","shop_price":169.9,"market_price":259.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/16/goods_img/17062611152592656236701367.jpg","reservable":false,"efficacy":"一整套源源补水","stock_number":0,"restrict_purchase_num":0,"goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609358507874536438833.jpg","description":"明星同款四件套,沙漠玫瑰精萃持久保湿,配合同款睡眠面膜保湿更持久~"},{"id":"87","goods_name":"全新升级丨玫瑰滋养面膜7","shop_price":89,"market_price":89,"goods_img":"https://image.yunifang.com/yunifang/images/goods/87/goods_img/170904211885816205585811962.jpg","reservable":false,"efficacy":"岂止补水 更能锁水","stock_number":0,"restrict_purchase_num":0,"goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709051823381467283568718.jpg","description":"岂止补水,更能锁水,如沐玫瑰清泉,远离干渴沙肌~"},{"id":"101","goods_name":"玫瑰滋养矿物洁面乳100ml","shop_price":29.9,"market_price":59,"goods_img":"https://image.yunifang.com/yunifang/images/goods/101/goods_img/170626105885015353255525556.jpg","reservable":false,"efficacy":"温和清洁 补水保湿","stock_number":0,"restrict_purchase_num":0,"goodsName":"清洁指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093764320738763251731.jpg","description":"有淡淡玫瑰花香,细腻低泡质地,洗完水润清爽,补水锁水,脸部不紧绷~"},{"id":"9","goods_name":"玫瑰滋养矿物睡眠面膜180g","shop_price":59.9,"market_price":99,"goods_img":"https://image.yunifang.com/yunifang/images/goods/9/goods_img/170626112611018894167156705.jpg","reservable":false,"efficacy":"镇店之宝 彻夜补水","stock_number":0,"restrict_purchase_num":0,"goodsName":"推荐指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093920020890610623903.jpg","description":"晚上洁面后,用完水乳,再涂上薄薄的一层,翌日起来,皮肤弹润有光泽,上妆也完全不担心会脱妆~"},{"id":"336","goods_name":"玫瑰滋养矿物润肤乳液","shop_price":69,"market_price":129,"goods_img":"https://image.yunifang.com/yunifang/images/goods/336/goods_img/170626103574019791491356888.jpg","reservable":false,"efficacy":"长效保湿 持久滋养","stock_number":0,"restrict_purchase_num":0,"goodsName":"保湿指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093939713507603809610.jpg","description":"它可以说是保湿小助手,有它在,肌肤干燥、皮肤油腻,通通解决~"},{"id":"187","goods_name":"玫瑰滋养基础三件套","shop_price":149.9,"market_price":179.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/187/goods_img/17062610472505220941898288.jpg","reservable":false,"efficacy":"多倍补水 长效保湿","stock_number":0,"restrict_purchase_num":0,"goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609414379789618916490.jpg","description":"超能补水,柔美的粉红色,淡淡的玫瑰香,闻起来特别舒服,保湿很明显~"},{"id":"315","goods_name":"玫瑰滋养矿物润肤水","shop_price":65,"market_price":109,"goods_img":"https://image.yunifang.com/yunifang/images/goods/315/goods_img/17062610389695661847862326.jpg","reservable":false,"efficacy":"持久保湿 静享芬芳","stock_number":0,"restrict_purchase_num":0,"goodsName":"补水指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609422120971403077934.jpg","description":"巧妙融合\u201c双重瑰宝\u201d萃取精华,\u201c黄金\u201d补水库,可使肌肤水嫩Q~"}],"goodsIdsList":["16","87","101","9","336","187","315"],"goodsRelationList":[{"id":"14299","subject_id":"85","goods_id":"16","goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609358507874536438833.jpg","description":"明星同款四件套,沙漠玫瑰精萃持久保湿,配合同款睡眠面膜保湿更持久~"},{"id":"14300","subject_id":"85","goods_id":"87","goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709051823381467283568718.jpg","description":"岂止补水,更能锁水,如沐玫瑰清泉,远离干渴沙肌~"},{"id":"14301","subject_id":"85","goods_id":"101","goodsName":"清洁指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093764320738763251731.jpg","description":"有淡淡玫瑰花香,细腻低泡质地,洗完水润清爽,补水锁水,脸部不紧绷~"},{"id":"14302","subject_id":"85","goods_id":"9","goodsName":"推荐指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093920020890610623903.jpg","description":"晚上洁面后,用完水乳,再涂上薄薄的一层,翌日起来,皮肤弹润有光泽,上妆也完全不担心会脱妆~"},{"id":"14303","subject_id":"85","goods_id":"336","goodsName":"保湿指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093939713507603809610.jpg","description":"它可以说是保湿小助手,有它在,肌肤干燥、皮肤油腻,通通解决~"},{"id":"14304","subject_id":"85","goods_id":"187","goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609414379789618916490.jpg","description":"超能补水,柔美的粉红色,淡淡的玫瑰香,闻起来特别舒服,保湿很明显~"},{"id":"14305","subject_id":"85","goods_id":"315","goodsName":"补水指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609422120971403077934.jpg","description":"巧妙融合\u201c双重瑰宝\u201d萃取精华,\u201c黄金\u201d补水库,可使肌肤水嫩Q~"}],"url":"http://h.yunifang.com/goods/subject.html?id=85","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=85"},{"id":"86","title":"清爽系列","detail":"温度变化、空气污染、电脑辐射等易引起的肌肤出油,玉竹贡竹的清新搭配,悦享净透清爽~","image":"https://image.yunifang.com/yunifang/images/goods/temp/17101116265017851243534104.jpg","start_time":"2017.05.16 09:44:13","end_time":"2018.01.31 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516094973114360348144160.jpg","template":"templateDefault","goodsList":[{"id":"189","goods_name":"控油必备丨清爽平衡护肤三件套","shop_price":99.9,"market_price":179.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/189/goods_img/1706261046499486999388441.jpg","reservable":false,"efficacy":"深层清洁 平衡水油","stock_number":0,"restrict_purchase_num":0,"goodsName":"控油指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516095132819066095187324.jpg","description":"大油田的救星,水和乳的质地都很清爽,轻薄完全不油腻,味道也很好闻没有很刺鼻的香气~"},{"id":"341","goods_name":"清爽平衡矿物爽肤乳液120ml","shop_price":79,"market_price":129,"goods_img":"https://image.yunifang.com/yunifang/images/goods/341/goods_img/17062610346813637236975691.jpg","reservable":false,"efficacy":"补水保湿 清爽控油","stock_number":0,"restrict_purchase_num":0,"goodsName":"控油指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154348413637236979205.jpg","description":"油性肌肤的烦恼需要从根源解决问题,该乳液蕴含玉竹精粹,可通过调节油脂平衡,告别油腻烦恼~"},{"id":"141","goods_name":"清爽平衡矿物睡眠面膜180g","shop_price":69.9,"market_price":79.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/141/goods_img/170626105338416020006362606.jpg","reservable":false,"efficacy":"平衡水油 清爽净透","stock_number":0,"restrict_purchase_num":0,"goodsName":"推荐指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154358216020006362358.jpg","description":"油皮妹纸们必备的懒人神器,睡前一抹,整晚无忧,让肌肤在睡眠中变得清新润泽~"},{"id":"313","goods_name":"清爽平衡矿物爽肤水150ml","shop_price":65,"market_price":109,"goods_img":"https://image.yunifang.com/yunifang/images/goods/313/goods_img/17062610398875573627694321.jpg","reservable":false,"efficacy":"补水控油 收敛毛孔","stock_number":0,"restrict_purchase_num":0,"goodsName":"清爽指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17062815439285573627696368.jpg","description":"二次清洁小助手,\u201c大油田\u201d必备,精选玉竹精萃,这个夏天做个不油腻\u201c小清新\u201d~"},{"id":"11","goods_name":"清爽平衡矿物泥浆面膜260g","shop_price":99,"market_price":99,"goods_img":"https://image.yunifang.com/yunifang/images/goods/11/goods_img/170626112085420599974158029.jpg","reservable":false,"efficacy":"口碑泥浆 清爽控油","stock_number":0,"restrict_purchase_num":0,"goodsName":"口碑指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154316020599974151881.jpg","description":"整整一大瓶,对抗油田、草莓鼻、粗毛孔无忧虑,从此清新无油,爱上自拍,和美颜相机说拜拜~"},{"id":"559","goods_name":"竹炭净透矿物泥浆面膜110g","shop_price":59,"market_price":99,"goods_img":"https://image.yunifang.com/yunifang/images/goods/559/goods_img/170627164784010618075663103.jpg","reservable":false,"efficacy":"控油净肤 细腻毛孔","stock_number":0,"restrict_purchase_num":0,"goodsName":"控油指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154343010618075663627.jpg","description":"控油能力较好,竹炭味道清新,质地温和,能带走多余油脂,维持肌肤油脂平衡~"}],"goodsIdsList":["189","341","141","313","11","559"],"goodsRelationList":[{"id":"14745","subject_id":"86","goods_id":"189","goodsName":"控油指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516095132819066095187324.jpg","description":"大油田的救星,水和乳的质地都很清爽,轻薄完全不油腻,味道也很好闻没有很刺鼻的香气~"},{"id":"14746","subject_id":"86","goods_id":"341","goodsName":"控油指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154348413637236979205.jpg","description":"油性肌肤的烦恼需要从根源解决问题,该乳液蕴含玉竹精粹,可通过调节油脂平衡,告别油腻烦恼~"},{"id":"14747","subject_id":"86","goods_id":"141","goodsName":"推荐指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154358216020006362358.jpg","description":"油皮妹纸们必备的懒人神器,睡前一抹,整晚无忧,让肌肤在睡眠中变得清新润泽~"},{"id":"14748","subject_id":"86","goods_id":"313","goodsName":"清爽指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17062815439285573627696368.jpg","description":"二次清洁小助手,\u201c大油田\u201d必备,精选玉竹精萃,这个夏天做个不油腻\u201c小清新\u201d~"},{"id":"14749","subject_id":"86","goods_id":"11","goodsName":"口碑指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154316020599974151881.jpg","description":"整整一大瓶,对抗油田、草莓鼻、粗毛孔无忧虑,从此清新无油,爱上自拍,和美颜相机说拜拜~"},{"id":"14750","subject_id":"86","goods_id":"559","goodsName":"控油指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154343010618075663627.jpg","description":"控油能力较好,竹炭味道清新,质地温和,能带走多余油脂,维持肌肤油脂平衡~"}],"url":"http://h.yunifang.com/goods/subject.html?id=86","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=86"},{"id":"89","title":"美白系列","detail":"3年研究成果\n5种植物复配美白精华\n滴滴渗透,淡化黑色素\n美白层层递增恢复自然白皙","image":"https://image.yunifang.com/yunifang/images/goods/temp/17051612377286522760845671.jpg","start_time":"2017.05.16 12:38:21","end_time":"2017.11.30 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516123730510604321177291.jpg","template":"templateDefault","goodsList":[{"id":"8","goods_name":"全新升级丨美白嫩肤面膜20","shop_price":129.9,"market_price":359,"goods_img":"https://image.yunifang.com/yunifang/images/goods/8/goods_img/170818182578717903477668239.jpg","reservable":false,"efficacy":"真美白 匠心造","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17081618370419872110796752.jpg","description":"真美白,匠心造!全新升级美白嫩肤面膜,多种美白成分助力美白,国家权威美白特证安全放心~"},{"id":"185","goods_name":"美白嫩肤护肤基础三件套装","shop_price":169.9,"market_price":209.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/185/goods_img/170626104732716695049042487.jpg","reservable":false,"efficacy":"温和清洁 补水美白","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224949016695049047380.jpg","description":"美白嫩肤,名字是代表,品质是保证,还有什么可犹豫的~"},{"id":"10","goods_name":"美白嫩肤睡眠面膜180g","shop_price":69,"market_price":119,"goods_img":"https://image.yunifang.com/yunifang/images/goods/10/goods_img/170626112190919312919673075.jpg","reservable":false,"efficacy":"补水美白 越睡越白","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224882619312919673312.jpg","description":"夜间是皮肤修复黄金期,若想修炼成白雪公主,每晚坚持使用效果更棒,白天也别忘防晒哦~"},{"id":"343","goods_name":"美白嫩肤润肤水150ml","shop_price":69,"market_price":119,"goods_img":"https://image.yunifang.com/yunifang/images/goods/343/goods_img/170626103423611420000294568.jpg","reservable":false,"efficacy":"补水保湿 美白嫩肤","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白效果:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224836611420000297349.jpg","description":"质地不粘稠,洗完脸以后肌肤的第一道滋润,打开肌肤通道,助力美白营养成分吸收~"},{"id":"1101","goods_name":"美白嫩肤泥浆面膜110g","shop_price":69,"market_price":79,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1101/goods_img/170627175248420984384699974.jpg","reservable":false,"efficacy":"清洁净透 美白嫩肤","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白清洁:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224986120984384692751.jpg","description":"为了白,尝尽各种方法,然而效果不佳,这款泥浆,深层吸黑,草本焕白,国家美白特证放心体验~"},{"id":"121","goods_name":"镇店之宝丨美白嫩肤面膜7","shop_price":49.9,"market_price":99,"goods_img":"https://image.yunifang.com/yunifang/images/goods/121/goods_img/17062610568378169043195978.jpg","reservable":false,"efficacy":"镇店之宝 美白爆款","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17072910225828169043193082.jpg","description":"15分钟亲肤享受,洗完脸以后肌肤的第一道滋润,打开肌肤通道,助力美白营养成分吸收~"}],"goodsIdsList":["8","185","10","343","1101","121"],"goodsRelationList":[{"id":"14443","subject_id":"89","goods_id":"8","goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17081618370419872110796752.jpg","description":"真美白,匠心造!全新升级美白嫩肤面膜,多种美白成分助力美白,国家权威美白特证安全放心~"},{"id":"14444","subject_id":"89","goods_id":"185","goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224949016695049047380.jpg","description":"美白嫩肤,名字是代表,品质是保证,还有什么可犹豫的~"},{"id":"14445","subject_id":"89","goods_id":"10","goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224882619312919673312.jpg","description":"夜间是皮肤修复黄金期,若想修炼成白雪公主,每晚坚持使用效果更棒,白天也别忘防晒哦~"},{"id":"14446","subject_id":"89","goods_id":"343","goodsName":"美白效果:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224836611420000297349.jpg","description":"质地不粘稠,洗完脸以后肌肤的第一道滋润,打开肌肤通道,助力美白营养成分吸收~"},{"id":"14447","subject_id":"89","goods_id":"1101","goodsName":"美白清洁:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224986120984384692751.jpg","description":"为了白,尝尽各种方法,然而效果不佳,这款泥浆,深层吸黑,草本焕白,国家美白特证放心体验~"},{"id":"14448","subject_id":"89","goods_id":"121","goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17072910225828169043193082.jpg","description":"15分钟亲肤享受,洗完脸以后肌肤的第一道滋润,打开肌肤通道,助力美白营养成分吸收~"}],"url":"http://h.yunifang.com/goods/subject.html?id=89","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=89"},{"id":"88","title":"红石榴系列","detail":"肌肤好像透着光\n每一滴红石榴原液含有护肤精粹\n赋予黯哑粗糙肌肤鲜润魅力\n红石榴不仅蕴含多种维他命矿物,更含有石榴多酚和花青素,渗透肌底,深层排浊,自内焕发肌肤红润光泽~\n","image":"https://image.yunifang.com/yunifang/images/goods/temp/170516122967511806265329475.jpg","start_time":"2017.05.16 12:29:44","end_time":"2017.10.31 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516122975121341081719659.jpg","template":"templateDefault","goodsList":[{"id":"99","goods_name":"红石榴矿物洁面乳100ml","shop_price":29.9,"market_price":59,"goods_img":"https://image.yunifang.com/yunifang/images/goods/99/goods_img/170626105849718932898868035.jpg","reservable":false,"efficacy":"温和清洁 提亮肤色","stock_number":0,"restrict_purchase_num":0,"goodsName":"清洁指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051612304946692218255625.jpg","description":"泡沫绵密,清扫毛孔浊质,助力鲜活补水,红石榴精华唤醒肌肤鲜活动力~"},{"id":"71","goods_name":"性价比之王|红石榴矿物补水亮肤十件套","shop_price":159.99,"market_price":319.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/71/goods_img/170914091495612767354095021.jpg","reservable":false,"efficacy":"补水亮肤 改善黯哑","stock_number":0,"restrict_purchase_num":0,"goodsName":"亮肤保湿:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516123365218037277371021.jpg","description":"小仙女们都知道,红石榴有提亮肤色的功效,这款套装炒鸡滋润,而且不油腻,红色大气包装更能俘获人心~"},{"id":"1281","goods_name":"新品眼霜丨红石榴矿物眼霜25g","shop_price":129,"market_price":159,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1281/goods_img/170626102555811776047044227.jpg","reservable":false,"efficacy":"淡退黑眼圈 净彻排浊","stock_number":0,"restrict_purchase_num":0,"goodsName":"淡化眼圈:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170729102668111776047045132.jpg","description":"熊猫眼克星!多种植物精粹,天然舒活肌肤水通道。清爽不油腻,好吸收,细纹看着浅。"},{"id":"151","goods_name":"红石榴鲜活矿物睡眠面膜180g","shop_price":99,"market_price":119,"goods_img":"https://image.yunifang.com/yunifang/images/goods/151/goods_img/170626105075810681841436827.jpg","reservable":false,"efficacy":"源源养护 鲜活亮颜","stock_number":0,"restrict_purchase_num":0,"goodsName":"提亮指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170729102811710681841435351.jpg","description":"看得见的鲜活粒子,增添肌肤鲜活能量!啫喱态的面膜,质地清爽不油腻!"}],"goodsIdsList":["99","1652","1250","71","1281","151"],"goodsRelationList":[{"id":"13960","subject_id":"88","goods_id":"99","goodsName":"清洁指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051612304946692218255625.jpg","description":"泡沫绵密,清扫毛孔浊质,助力鲜活补水,红石榴精华唤醒肌肤鲜活动力~"},{"id":"13961","subject_id":"88","goods_id":"1652","goodsName":"亮肤指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516123680716693836711273.jpg","description":"红石榴精华有助于打散黑色素群,提亮肤色更给力,肤色暗黄的小伙伴们看过来~"},{"id":"13962","subject_id":"88","goods_id":"1250","goodsName":"抗氧化:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516123022219451838196701.jpg","description":"你的梳妆台必不可少一瓶面霜,告别熬夜和岁月留下的黄脸,为肌肤注入鲜活能量~"},{"id":"13963","subject_id":"88","goods_id":"71","goodsName":"亮肤保湿:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516123365218037277371021.jpg","description":"小仙女们都知道,红石榴有提亮肤色的功效,这款套装炒鸡滋润,而且不油腻,红色大气包装更能俘获人心~"},{"id":"13964","subject_id":"88","goods_id":"1281","goodsName":"淡化眼圈:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170729102668111776047045132.jpg","description":"熊猫眼克星!多种植物精粹,天然舒活肌肤水通道。清爽不油腻,好吸收,细纹看着浅。"},{"id":"13965","subject_id":"88","goods_id":"151","goodsName":"提亮指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170729102811710681841435351.jpg","description":"看得见的鲜活粒子,增添肌肤鲜活能量!啫喱态的面膜,质地清爽不油腻!"}],"url":"http://h.yunifang.com/goods/subject.html?id=88","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=88"},{"id":"101","title":"黑玫瑰系列","detail":"层层筛选优质黑玫瑰\n黑玫瑰精粹含单宁酸及植物多酚\n解决肌肤黯哑不均,显著提亮","image":"https://image.yunifang.com/yunifang/images/goods/temp/170731095719116873211372276.jpg","start_time":"2017.07.25 00:00:00","end_time":"2018.01.31 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/17073109575402630402867921.jpg","template":"templateDefault","goodsList":[{"id":"4","goods_name":"黑玫瑰矿物洁面乳100ml","shop_price":49,"market_price":59,"goods_img":"https://image.yunifang.com/yunifang/images/goods/4/goods_img/17062611262464209534577694.jpg","reservable":false,"efficacy":"温和清洁 提亮肤色","stock_number":0,"restrict_purchase_num":0,"goodsName":"清洁提亮:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17073110055984209534577564.jpg","description":"泡沫细腻,清洁清洁肌肤,一扫城市雾霾导致的肌肤污垢,同时黑玫瑰精粹由内而外提亮肤色~"},{"id":"1805","goods_name":"黑玫瑰护肤基础三件套","shop_price":269.9,"market_price":387,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1805/goods_img/17050414108281642074189987.jpg","reservable":false,"efficacy":"击退黯哑 提亮莹润","stock_number":0,"restrict_purchase_num":0,"goodsName":"推荐指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170731100820019181327789327.jpg","description":"3重亮肤能量,层层淡化黯哑,给予肌肤奢宠养护~"},{"id":"127","goods_name":"黑玫瑰泥浆面膜260g","shop_price":199,"market_price":199,"goods_img":"https://image.yunifang.com/yunifang/images/goods/127/goods_img/170626145396916224693431300.jpg","reservable":false,"efficacy":"滋养润滑 提亮肤色","stock_number":0,"restrict_purchase_num":0,"goodsName":"清洁亮肤:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170731101056416224693431021.jpg","description":"大多肌肤问题源于脸部清洁不当,黑玫瑰泥浆解决护肤根本问题~"},{"id":"245","goods_name":"黑玫瑰睡眠面膜护肤四件套装","shop_price":429.9,"market_price":539.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/245/goods_img/17062610416972131702264912.jpg","reservable":false,"efficacy":"滋养肌肤 提亮肤色","stock_number":0,"restrict_purchase_num":0,"goodsName":"综合指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707311016882131702267162.jpg","description":"一套护肤装备,解决肌肤粗糙暗沉,熟龄肌首选~"}],"goodsIdsList":["403","4","1805","127","83","245"],"goodsRelationList":[{"id":"13947","subject_id":"101","goods_id":"403","goodsName":"推荐指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707311002441167403859909.jpg","description":"黑玫瑰精粹集于一瓶,一小瓶精华液唤醒肌肤夺目光彩"},{"id":"13948","subject_id":"101","goods_id":"4","goodsName":"清洁提亮:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17073110055984209534577564.jpg","description":"泡沫细腻,清洁清洁肌肤,一扫城市雾霾导致的肌肤污垢,同时黑玫瑰精粹由内而外提亮肤色~"},{"id":"13949","subject_id":"101","goods_id":"1805","goodsName":"推荐指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170731100820019181327789327.jpg","description":"3重亮肤能量,层层淡化黯哑,给予肌肤奢宠养护~"},{"id":"13950","subject_id":"101","goods_id":"127","goodsName":"清洁亮肤:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170731101056416224693431021.jpg","description":"大多肌肤问题源于脸部清洁不当,黑玫瑰泥浆解决护肤根本问题~"},{"id":"13951","subject_id":"101","goods_id":"83","goodsName":"补水提亮:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17073110134825656554699188.jpg","description":"15分钟亲肤享受,敷面膜时黑玫瑰自然清新的花香令人身心愉悦,于芬芳中绽放美好气色~"},{"id":"13952","subject_id":"101","goods_id":"245","goodsName":"综合指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707311016882131702267162.jpg","description":"一套护肤装备,解决肌肤粗糙暗沉,熟龄肌首选~"}],"url":"http://h.yunifang.com/goods/subject.html?id=101","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=101"}],"activityInfo":{"activityAreaDisplay":"1","activityInfoList":[{"id":"60","activityImg":"https://image.yunifang.com/yunifang/images/goods/temp/170527155491221343694704636.jpg","activityType":"60","activityData":"69","activityDataDetail":"69","activityAreaDisplay":"1","countDownEnable":"0","remark":"搭配购买立减","sort":0},{"id":"21","activityImg":"https://image.yunifang.com/yunifang/images/goods/temp/17051718251658680692616281.jpg","activityType":"1","activityData":"http://h.yunifang.com/invite/invite.html?login_check=2","activityDataDetail":"http%3A%2F%2Fh.yunifang.com%2Finvite%2Finvite.html%3Flogin_check%3D2","activityAreaDisplay":"1","countDownEnable":"0","sort":0}]},"ad1":[{"id":"1147","createtime":"2017.10.09 08:33:42","lastupdatetime":"2017.10.09 08:33:46","image":"https://image.yunifang.com/yunifang/images/goods/ad0/17100908319495742677657462.jpg","ad_type":0,"sort":1414,"position":0,"enabled":1,"createuser":"leiqi","lastupdateuser":"leiqi","ad_type_dynamic":"1","ad_type_dynamic_data":"http://h.yunifang.com/h/comment.html","ad_type_dynamic_detail":"http%3A%2F%2Fh.yunifang.com%2Fh%2Fcomment.html","title":"10月商品好评有礼","channelType":"0"},{"id":"1047","createtime":"2017.07.05 19:49:35","lastupdatetime":"2017.09.28 22:16:07","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170905143497021095281713081.jpg","ad_type":0,"sort":1404,"position":0,"enabled":1,"createuser":"hani","lastupdateuser":"leiqi","ad_type_dynamic":"2","ad_type_dynamic_data":"8","ad_type_dynamic_detail":"8","show_channel":"1,2,3,4","title":"美白嫩肤新品面膜","channelType":"0"},{"id":"1055","createtime":"2017.07.19 14:52:20","lastupdatetime":"2017.10.09 10:53:21","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170905143499118006873413769.jpg","ad_type":0,"sort":1403,"position":0,"enabled":1,"createuser":"xicheng","lastupdateuser":"hani","ad_type_dynamic":"2","ad_type_dynamic_data":"1870","ad_type_dynamic_detail":"1870","show_channel":"1,2,3,4","title":"820玉润雪肌膜盒","channelType":"0"},{"id":"1088","createtime":"2017.08.23 09:32:02","lastupdatetime":"2017.09.28 10:24:57","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170823222049920659891841095.jpg","ad_type":0,"sort":1400,"position":0,"enabled":1,"createuser":"hani","lastupdateuser":"xicheng","ad_type_dynamic":"1","ad_type_dynamic_data":"http://h.yunifang.com/h/video.html","ad_type_dynamic_detail":"http%3A%2F%2Fh.yunifang.com%2Fh%2Fvideo.html","show_channel":"1,2,3,4","title":"国货力量","channelType":"0"}],"ad5":[{"id":"359","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170516143575610973073847273.png","ad_type":4,"sort":295,"position":5,"enabled":0,"ad_type_dynamic":"1","ad_type_dynamic_data":"http://h.yunifang.com/sign/sign.html?login_check=2","ad_type_dynamic_detail":"http%3A%2F%2Fh.yunifang.com%2Fsign%2Fsign.html%3Flogin_check%3D2","show_channel":"1,2","title":"每日签到"},{"id":"358","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170516143522410954603429327.png","ad_type":1,"url":"http://mobile.hmeili.com/yunifang/web/member/gift","sort":293,"position":5,"enabled":0,"ad_type_dynamic":"1","ad_type_dynamic_data":"http://m.yunifang.com/yunifang/mobile/creditShop/loginDBShop?dbredirect=http://www.duiba.com.cn/chome/index&login_check=2","ad_type_dynamic_detail":"http%3A%2F%2Fm.yunifang.com%2Fyunifang%2Fmobile%2FcreditShop%2FloginDBShop%3Fdbredirect%3Dhttp%3A%2F%2Fwww.duiba.com.cn%2Fchome%2Findex%26login_check%3D2","show_channel":"1,2","title":"积分商城"},{"id":"357","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170516143491410936133008135.png","ad_type":1,"url":"http://mobile.hmeili.com/yunifang/web/help/cash","sort":291,"position":5,"enabled":0,"ad_type_dynamic":"1","ad_type_dynamic_data":"http://h.yunifang.com/exchange/code_app.html?login_check=1","ad_type_dynamic_detail":"http%3A%2F%2Fh.yunifang.com%2Fexchange%2Fcode_app.html%3Flogin_check%3D1","show_channel":"1,2","title":"兑换专区"},{"id":"360","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170516143497810917662585920.png","ad_type":1,"url":"http://www.yunifang.com/a/fangweichaxun/wap_fwcx.html","sort":289,"position":5,"enabled":0,"ad_type_dynamic":"1","ad_type_dynamic_data":"http://www.yunifang.com/a/fangweichaxun/wap_fwcx.html","ad_type_dynamic_detail":"http%3A%2F%2Fwww.yunifang.com%2Fa%2Ffangweichaxun%2Fwap_fwcx.html","show_channel":"1,2,3,4","title":"真伪查询"}],"ad8":[{"id":"1056","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170719150582816742818457761.png","ad_type":0,"sort":57,"position":8,"enabled":0,"description":"人气好物超值推荐","ad_type_dynamic":"1","ad_type_dynamic_data":"http://vip.yunifang.com/goods/recommend.html?id=87","ad_type_dynamic_detail":"http%3A%2F%2Fh.yunifang.com%2Fgoods%2Frecommend.html%3Fid%3D87","show_channel":"1,2,3,4","title":"新鲜每一天","goods":{"collect_count":0,"reservable":false,"restriction":0,"restrict_purchase_num":0,"is_coupon_allowed":false,"allocated_stock":0,"is_gift":0}},{"id":"954","image":"https://image.yunifang.com/yunifang/images/goods/ad0/171011094966420374041489003.jpg","ad_type":0,"sort":56,"position":8,"enabled":0,"description":"补水滢亮面膜礼盒","ad_type_dynamic":"1","ad_type_dynamic_data":"http://vip.yunifang.com/community_wap/theme-detail.html?id=14319","ad_type_dynamic_detail":"http%3A%2F%2Fvip.yunifang.com%2Fcommunity%2Ftheme-detail.html%3Fid%3D14319","show_channel":"1,2,3,4","title":"免费试用","goods":{"collect_count":0,"reservable":false,"restriction":0,"restrict_purchase_num":0,"is_coupon_allowed":false,"allocated_stock":0,"is_gift":0}},{"id":"1125","image":"https://image.yunifang.com/yunifang/images/goods/ad0/17093010304768203378533256.jpg","ad_type":0,"sort":54,"position":8,"enabled":0,"description":"解救干燥肌","ad_type_dynamic":"2","ad_type_dynamic_data":"16","ad_type_dynamic_detail":"16","show_channel":"1,2,3,4","title":"秋季热销","goods":{"collect_count":0,"reservable":false,"restriction":0,"restrict_purchase_num":0,"is_coupon_allowed":false,"allocated_stock":0,"is_gift":0}}],"defaultGoodsList":[{"id":"121","goods_name":"镇店之宝丨美白嫩肤面膜7","shop_price":49.9,"market_price":99,"goods_img":"https://image.yunifang.com/yunifang/images/goods/121/goods_img/17062610568378169043195978.jpg","reservable":false,"efficacy":"镇店之宝 美白爆款","stock_number":0,"restrict_purchase_num":0},{"id":"389","goods_name":"热销爆款丨清爽平衡矿物黑面膜21","shop_price":99.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/389/goods_img/17062610265116850439553337.jpg","reservable":false,"efficacy":"以黑吸黑 净透亮肤","stock_number":0,"restrict_purchase_num":0},{"id":"684","goods_name":"解救肌渴丨花粹水润面膜套装10","shop_price":29.9,"market_price":139,"goods_img":"https://image.yunifang.com/yunifang/images/goods/684/goods_img/17062610401397749701177609.jpg","reservable":false,"efficacy":"水润充盈 鲜嫩少女肌","stock_number":0,"restrict_purchase_num":0},{"id":"6","goods_name":"好用不贵丨亮颜水润蚕丝面膜(寂地定制版)","shop_price":59.9,"market_price":239.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/6/goods_img/170626112597120167739086821.jpg","reservable":false,"efficacy":"深层补水 提亮肤色","stock_number":0,"restrict_purchase_num":0},{"id":"772","goods_name":"全新升级丨清润莹亮黑膜套装21","shop_price":99.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/772/goods_img/17090514228269026987111180.jpg","reservable":false,"efficacy":"自然莹亮 水感瓷肌","stock_number":0,"restrict_purchase_num":0},{"id":"5","goods_name":"金桂花矿物眼膜贴60","shop_price":69,"market_price":129,"goods_img":"https://image.yunifang.com/yunifang/images/goods/5/goods_img/170626112553213363513709796.jpg","reservable":false,"efficacy":"补水靓眼 改善熊猫眼","stock_number":0,"restrict_purchase_num":0}],"creditRecived":false,"goodsSpreeActivity":{"id":"327","name":"10.13早场","startDate":"2017.10.13 10:00:00","endDate":"2017.10.13 16:00:00","status":"1","startSeconds":"-12118","endSeconds":"9481","isChecked":"0","goodsList":[{"id":"997","goodsSpreeId":"327","goodsId":"340","goodsName":"【使用期一年以上介意慎拍】黑玫瑰矿物柔肤乳液120ml","goodsImg":"https://image.yunifang.com/yunifang/images/goods/340/goods_img/170626103460417447209262417.jpg","marketPrice":169,"activityPrice":39.9,"salesRatio":0,"stockNumber":30,"releaseNumber":40},{"id":"998","goodsSpreeId":"327","goodsId":"1324","goodsName":"鲜气少女肌|水光轻灵焕彩面膜5","goodsImg":"https://image.yunifang.com/yunifang/images/goods/1324/goods_img/170626102366110382576889824.jpg","marketPrice":129,"activityPrice":59.9,"salesRatio":0,"stockNumber":30,"releaseNumber":30},{"id":"999","goodsSpreeId":"327","goodsId":"903","goodsName":"绿豆原浆泥面膜100g","goodsImg":"https://image.yunifang.com/yunifang/images/goods/903/goods_img/170627180542017051678666200.jpg","marketPrice":99,"activityPrice":49.9,"salesRatio":0,"stockNumber":28,"releaseNumber":30}]}}     */    private int code;    private String msg;    private DataBean data;    public int getCode() {        return code;    }    public void setCode(int code) {        this.code = code;    }    public String getMsg() {        return msg;    }    public void setMsg(String msg) {        this.msg = msg;    }    public DataBean getData() {        return data;    }    public void setData(DataBean data) {        this.data = data;    }    public static class DataBean {        /**         * subjects : [{"id":"84","title":"新品上市","detail":"质本天然,探寻自然生命的非凡能量,给\u201c躁动\u201d的肌肤一场新的旅行~~","image":"https://image.yunifang.com/yunifang/images/goods/temp/171011162655217457875119759.jpg","start_time":"2017.05.16 09:26:13","end_time":"2017.10.31 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609265319705925918251.jpg","template":"templateDefault","goodsList":[{"id":"492","goods_name":"盈透美肌黑膜套装(插画版)","shop_price":99.9,"market_price":298,"goods_img":"https://image.yunifang.com/yunifang/images/goods/492/goods_img/171011191068814258195256706.jpg","reservable":false,"efficacy":"以黑吸黑 润透亮颜","stock_number":0,"restrict_purchase_num":0,"goodsName":"PG one热荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011192212214258195254179.jpg","description":"三重植物精粹,三重水润膜力,美时美刻,水润透亮~"},{"id":"2076","goods_name":"鲜嫩美莓面膜套装","shop_price":129.9,"market_price":299,"goods_img":"https://image.yunifang.com/yunifang/images/goods/2076/goods_img/170930212555714134276722977.jpg","reservable":false,"efficacy":"果然水润 嫩颜美莓","stock_number":0,"restrict_purchase_num":0,"goodsName":"水润指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119283583452898243380.jpg","description":"畅享鲜果派对,肌肤水嫩鲜活,萃取自然野草莓、黑莓、巴西莓精华,三款搭配持续水嫩鲜活~"},{"id":"1189","goods_name":"清透盈润面膜套装21","shop_price":79.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1189/goods_img/17093019432252555150652465.jpg","reservable":false,"efficacy":"水感剔透 鲜颜嫩肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"鲜嫩指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119312216937168845205.jpg","description":"精选玫瑰、竹萃自然精粹,清洁力、补水力、亮泽度全新升级,另肌肤水感剔透~"},{"id":"1638","goods_name":"全新升级丨嫩肌酵素黑膜礼盒21","shop_price":139.9,"market_price":299,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1638/goods_img/170905151496114997886544712.jpg","reservable":false,"efficacy":"极地酵素 \u201c\u201d醒美肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"推荐指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170905182614314997886548523.jpg","description":"蕴含南极活性补水酵素精华,持久补水锁水,轻蔬鲜果酵素助力平衡水油~"},{"id":"1830","goods_name":"新品尝鲜|水润茶萃微囊黑面膜20","shop_price":129.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1830/goods_img/17063017284962337647468682.jpg","reservable":false,"efficacy":"只要一片 水润一天","stock_number":0,"restrict_purchase_num":0,"goodsName":"新品推荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1705240026717476518778188.jpg","description":"茶萃微囊精华,开创持续保湿新体验,只要一片,水润一天,持续保湿12小时以上"},{"id":"2091","goods_name":"新品上市丨V7伪妆素颜霜20g","shop_price":79,"market_price":79,"goods_img":"https://image.yunifang.com/yunifang/images/goods/2091/goods_img/170905172822119555059792173.jpg","reservable":false,"efficacy":"即刻提亮 闪亮肤色","stock_number":0,"restrict_purchase_num":0,"goodsName":"遮瑕指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709051825818467283561992.jpg","description":"如果你是素颜控,这款即刻提亮,闪亮肤色的懒人新品素颜霜你值得拥有~"},{"id":"2039","goods_name":"水润柔嫩黑膜21","shop_price":89.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/2039/goods_img/17093020002498271170145819.jpg","reservable":false,"efficacy":"自然纯粹 水润纯净","stock_number":0,"restrict_purchase_num":0,"goodsName":"补水指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011193181418890895139029.jpg","description":"精选龙头竹菁萃、牛油果精粹、黑珍珠精粹,给你自然纯粹,水润纯净体验~"},{"id":"745","goods_name":"全新升级丨晶亮红石榴面膜7","shop_price":79,"market_price":89,"goods_img":"https://image.yunifang.com/yunifang/images/goods/745/goods_img/17081617418998795654179347.jpg","reservable":false,"efficacy":"深度排浊 一扫黯哑","stock_number":0,"restrict_purchase_num":0,"goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170816184151311258603701437.jpg","description":"萃取红石榴原液,滴滴蕴含鲜活能量,清洁排浊、透亮无瑕,改善粗糙黯哑小能手"},{"id":"1870","goods_name":"新品尝鲜|玉润雪肌黑白膜盒20","shop_price":129.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1870/goods_img/17071909555120332464127704.jpg","reservable":false,"efficacy":"黑白膜力 美肌如玉","stock_number":0,"restrict_purchase_num":0,"goodsName":"新品推荐:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707171037861467283567706.jpg","description":"白膜胶原蛋白精华,昼弹润生态库,黑膜三分子玻尿酸,夜补水先锋。黑白膜力,水肌如玉~"},{"id":"1919","goods_name":"透亮红酒酵力面膜21","shop_price":129.9,"market_price":239,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1919/goods_img/170630171021217601465422538.jpg","reservable":false,"efficacy":"红酒透亮 酵醒美肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224599017601465422520.jpg","description":"全新添加西班牙酵母发酵液,融合法国红酒多酚亮肤成分,加乘亮肤功效~"},{"id":"772","goods_name":"全新升级丨清润莹亮黑膜套装21","shop_price":99.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/772/goods_img/17090514228269026987111180.jpg","reservable":false,"efficacy":"自然莹亮 水感瓷肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"水亮能量:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709191414112467283564077.jpg","description":"自然莹亮,水感瓷肌,精选龙头竹、葡萄籽,演绎水亮二重奏~"},{"id":"487","goods_name":"海洋弹性蛋白矿物精华眼霜25g","shop_price":139,"market_price":169,"goods_img":"https://image.yunifang.com/yunifang/images/goods/487/goods_img/170626101843492134395965.jpg","reservable":false,"efficacy":"提拉紧致 润亮双眸","stock_number":0,"restrict_purchase_num":0,"goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151917130467283566572.jpg","description":"不要等到有皱纹了才想起用眼霜,不要让眼睛放大你的年龄,每一滴自然精粹,都为你打造明亮双眸~"},{"id":"1281","goods_name":"新品眼霜丨红石榴矿物眼霜25g","shop_price":129,"market_price":159,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1281/goods_img/170626102555811776047044227.jpg","reservable":false,"efficacy":"淡退黑眼圈 净彻排浊","stock_number":0,"restrict_purchase_num":0,"goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151918330467283566999.jpg","description":"熊猫眼克星!多种植物精粹,天然舒活肌肤水通道,清爽不油腻,好吸收,和细纹说拜拜~"}],"goodsIdsList":["492","2076","1923","1189","1638","1830","2091","2039","745","1870","1919","772","1280","487","1281","1250"],"goodsRelationList":[{"id":"14815","subject_id":"84","goods_id":"492","goodsName":"PG one热荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011192212214258195254179.jpg","description":"三重植物精粹,三重水润膜力,美时美刻,水润透亮~"},{"id":"14816","subject_id":"84","goods_id":"2076","goodsName":"水润指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119283583452898243380.jpg","description":"畅享鲜果派对,肌肤水嫩鲜活,萃取自然野草莓、黑莓、巴西莓精华,三款搭配持续水嫩鲜活~"},{"id":"14817","subject_id":"84","goods_id":"1923","goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170816184068619872110797032.jpg","description":"真美白,匠心造!全新升级美白嫩肤面膜,多种美白成分助力美白,国家权威美白特证安全放心~"},{"id":"14818","subject_id":"84","goods_id":"1189","goodsName":"鲜嫩指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119312216937168845205.jpg","description":"精选玫瑰、竹萃自然精粹,清洁力、补水力、亮泽度全新升级,另肌肤水感剔透~"},{"id":"14819","subject_id":"84","goods_id":"1638","goodsName":"推荐指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170905182614314997886548523.jpg","description":"蕴含南极活性补水酵素精华,持久补水锁水,轻蔬鲜果酵素助力平衡水油~"},{"id":"14820","subject_id":"84","goods_id":"1830","goodsName":"新品推荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1705240026717476518778188.jpg","description":"茶萃微囊精华,开创持续保湿新体验,只要一片,水润一天,持续保湿12小时以上"},{"id":"14821","subject_id":"84","goods_id":"2091","goodsName":"遮瑕指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709051825818467283561992.jpg","description":"如果你是素颜控,这款即刻提亮,闪亮肤色的懒人新品素颜霜你值得拥有~"},{"id":"14822","subject_id":"84","goods_id":"2039","goodsName":"补水指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011193181418890895139029.jpg","description":"精选龙头竹菁萃、牛油果精粹、黑珍珠精粹,给你自然纯粹,水润纯净体验~"},{"id":"14823","subject_id":"84","goods_id":"745","goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170816184151311258603701437.jpg","description":"萃取红石榴原液,滴滴蕴含鲜活能量,清洁排浊、透亮无瑕,改善粗糙黯哑小能手"},{"id":"14824","subject_id":"84","goods_id":"1870","goodsName":"新品推荐:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707171037861467283567706.jpg","description":"白膜胶原蛋白精华,昼弹润生态库,黑膜三分子玻尿酸,夜补水先锋。黑白膜力,水肌如玉~"},{"id":"14825","subject_id":"84","goods_id":"1919","goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224599017601465422520.jpg","description":"全新添加西班牙酵母发酵液,融合法国红酒多酚亮肤成分,加乘亮肤功效~"},{"id":"14826","subject_id":"84","goods_id":"772","goodsName":"水亮能量:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709191414112467283564077.jpg","description":"自然莹亮,水感瓷肌,精选龙头竹、葡萄籽,演绎水亮二重奏~"},{"id":"14827","subject_id":"84","goods_id":"1280","goodsName":"遮瑕指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609285005287026507049.jpg","description":"日本进口粉扑,云母成分强遮瑕,接触肌肤绵密柔软,粉体细腻,妆感轻薄,完美遮瑕~"},{"id":"14828","subject_id":"84","goods_id":"487","goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151917130467283566572.jpg","description":"不要等到有皱纹了才想起用眼霜,不要让眼睛放大你的年龄,每一滴自然精粹,都为你打造明亮双眸~"},{"id":"14829","subject_id":"84","goods_id":"1281","goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151918330467283566999.jpg","description":"熊猫眼克星!多种植物精粹,天然舒活肌肤水通道,清爽不油腻,好吸收,和细纹说拜拜~"},{"id":"14830","subject_id":"84","goods_id":"1250","goodsName":"抗氧化指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706021026770467283563014.jpg","description":"你的梳妆台必不可少一瓶面霜,告别熬夜和岁月留下的黄脸,为肌肤注入鲜活能量。"}],"url":"http://h.yunifang.com/goods/subject.html?id=84","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=84"},{"id":"85","title":"玫瑰系列","detail":"大马士革玫瑰 ,天然补水之选\n沙漠玫瑰 ,优质锁水之源\n打造花漾透润,奢宠水嫩肌","image":"https://image.yunifang.com/yunifang/images/goods/temp/17051609349138679665088294.jpg","start_time":"2017.05.16 09:34:46","end_time":"2017.10.31 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609348383766880399479.jpg","template":"templateDefault","goodsList":[{"id":"16","goods_name":"热销套装丨玫瑰滋养保湿四件套","shop_price":169.9,"market_price":259.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/16/goods_img/17062611152592656236701367.jpg","reservable":false,"efficacy":"一整套源源补水","stock_number":0,"restrict_purchase_num":0,"goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609358507874536438833.jpg","description":"明星同款四件套,沙漠玫瑰精萃持久保湿,配合同款睡眠面膜保湿更持久~"},{"id":"87","goods_name":"全新升级丨玫瑰滋养面膜7","shop_price":89,"market_price":89,"goods_img":"https://image.yunifang.com/yunifang/images/goods/87/goods_img/170904211885816205585811962.jpg","reservable":false,"efficacy":"岂止补水 更能锁水","stock_number":0,"restrict_purchase_num":0,"goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709051823381467283568718.jpg","description":"岂止补水,更能锁水,如沐玫瑰清泉,远离干渴沙肌~"},{"id":"101","goods_name":"玫瑰滋养矿物洁面乳100ml","shop_price":29.9,"market_price":59,"goods_img":"https://image.yunifang.com/yunifang/images/goods/101/goods_img/170626105885015353255525556.jpg","reservable":false,"efficacy":"温和清洁 补水保湿","stock_number":0,"restrict_purchase_num":0,"goodsName":"清洁指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093764320738763251731.jpg","description":"有淡淡玫瑰花香,细腻低泡质地,洗完水润清爽,补水锁水,脸部不紧绷~"},{"id":"9","goods_name":"玫瑰滋养矿物睡眠面膜180g","shop_price":59.9,"market_price":99,"goods_img":"https://image.yunifang.com/yunifang/images/goods/9/goods_img/170626112611018894167156705.jpg","reservable":false,"efficacy":"镇店之宝 彻夜补水","stock_number":0,"restrict_purchase_num":0,"goodsName":"推荐指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093920020890610623903.jpg","description":"晚上洁面后,用完水乳,再涂上薄薄的一层,翌日起来,皮肤弹润有光泽,上妆也完全不担心会脱妆~"},{"id":"336","goods_name":"玫瑰滋养矿物润肤乳液","shop_price":69,"market_price":129,"goods_img":"https://image.yunifang.com/yunifang/images/goods/336/goods_img/170626103574019791491356888.jpg","reservable":false,"efficacy":"长效保湿 持久滋养","stock_number":0,"restrict_purchase_num":0,"goodsName":"保湿指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093939713507603809610.jpg","description":"它可以说是保湿小助手,有它在,肌肤干燥、皮肤油腻,通通解决~"},{"id":"187","goods_name":"玫瑰滋养基础三件套","shop_price":149.9,"market_price":179.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/187/goods_img/17062610472505220941898288.jpg","reservable":false,"efficacy":"多倍补水 长效保湿","stock_number":0,"restrict_purchase_num":0,"goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609414379789618916490.jpg","description":"超能补水,柔美的粉红色,淡淡的玫瑰香,闻起来特别舒服,保湿很明显~"},{"id":"315","goods_name":"玫瑰滋养矿物润肤水","shop_price":65,"market_price":109,"goods_img":"https://image.yunifang.com/yunifang/images/goods/315/goods_img/17062610389695661847862326.jpg","reservable":false,"efficacy":"持久保湿 静享芬芳","stock_number":0,"restrict_purchase_num":0,"goodsName":"补水指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609422120971403077934.jpg","description":"巧妙融合\u201c双重瑰宝\u201d萃取精华,\u201c黄金\u201d补水库,可使肌肤水嫩Q~"}],"goodsIdsList":["16","87","101","9","336","187","315"],"goodsRelationList":[{"id":"14299","subject_id":"85","goods_id":"16","goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609358507874536438833.jpg","description":"明星同款四件套,沙漠玫瑰精萃持久保湿,配合同款睡眠面膜保湿更持久~"},{"id":"14300","subject_id":"85","goods_id":"87","goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709051823381467283568718.jpg","description":"岂止补水,更能锁水,如沐玫瑰清泉,远离干渴沙肌~"},{"id":"14301","subject_id":"85","goods_id":"101","goodsName":"清洁指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093764320738763251731.jpg","description":"有淡淡玫瑰花香,细腻低泡质地,洗完水润清爽,补水锁水,脸部不紧绷~"},{"id":"14302","subject_id":"85","goods_id":"9","goodsName":"推荐指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093920020890610623903.jpg","description":"晚上洁面后,用完水乳,再涂上薄薄的一层,翌日起来,皮肤弹润有光泽,上妆也完全不担心会脱妆~"},{"id":"14303","subject_id":"85","goods_id":"336","goodsName":"保湿指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516093939713507603809610.jpg","description":"它可以说是保湿小助手,有它在,肌肤干燥、皮肤油腻,通通解决~"},{"id":"14304","subject_id":"85","goods_id":"187","goodsName":"补水指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609414379789618916490.jpg","description":"超能补水,柔美的粉红色,淡淡的玫瑰香,闻起来特别舒服,保湿很明显~"},{"id":"14305","subject_id":"85","goods_id":"315","goodsName":"补水指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609422120971403077934.jpg","description":"巧妙融合\u201c双重瑰宝\u201d萃取精华,\u201c黄金\u201d补水库,可使肌肤水嫩Q~"}],"url":"http://h.yunifang.com/goods/subject.html?id=85","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=85"},{"id":"86","title":"清爽系列","detail":"温度变化、空气污染、电脑辐射等易引起的肌肤出油,玉竹贡竹的清新搭配,悦享净透清爽~","image":"https://image.yunifang.com/yunifang/images/goods/temp/17101116265017851243534104.jpg","start_time":"2017.05.16 09:44:13","end_time":"2018.01.31 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516094973114360348144160.jpg","template":"templateDefault","goodsList":[{"id":"189","goods_name":"控油必备丨清爽平衡护肤三件套","shop_price":99.9,"market_price":179.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/189/goods_img/1706261046499486999388441.jpg","reservable":false,"efficacy":"深层清洁 平衡水油","stock_number":0,"restrict_purchase_num":0,"goodsName":"控油指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516095132819066095187324.jpg","description":"大油田的救星,水和乳的质地都很清爽,轻薄完全不油腻,味道也很好闻没有很刺鼻的香气~"},{"id":"341","goods_name":"清爽平衡矿物爽肤乳液120ml","shop_price":79,"market_price":129,"goods_img":"https://image.yunifang.com/yunifang/images/goods/341/goods_img/17062610346813637236975691.jpg","reservable":false,"efficacy":"补水保湿 清爽控油","stock_number":0,"restrict_purchase_num":0,"goodsName":"控油指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154348413637236979205.jpg","description":"油性肌肤的烦恼需要从根源解决问题,该乳液蕴含玉竹精粹,可通过调节油脂平衡,告别油腻烦恼~"},{"id":"141","goods_name":"清爽平衡矿物睡眠面膜180g","shop_price":69.9,"market_price":79.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/141/goods_img/170626105338416020006362606.jpg","reservable":false,"efficacy":"平衡水油 清爽净透","stock_number":0,"restrict_purchase_num":0,"goodsName":"推荐指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154358216020006362358.jpg","description":"油皮妹纸们必备的懒人神器,睡前一抹,整晚无忧,让肌肤在睡眠中变得清新润泽~"},{"id":"313","goods_name":"清爽平衡矿物爽肤水150ml","shop_price":65,"market_price":109,"goods_img":"https://image.yunifang.com/yunifang/images/goods/313/goods_img/17062610398875573627694321.jpg","reservable":false,"efficacy":"补水控油 收敛毛孔","stock_number":0,"restrict_purchase_num":0,"goodsName":"清爽指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17062815439285573627696368.jpg","description":"二次清洁小助手,\u201c大油田\u201d必备,精选玉竹精萃,这个夏天做个不油腻\u201c小清新\u201d~"},{"id":"11","goods_name":"清爽平衡矿物泥浆面膜260g","shop_price":99,"market_price":99,"goods_img":"https://image.yunifang.com/yunifang/images/goods/11/goods_img/170626112085420599974158029.jpg","reservable":false,"efficacy":"口碑泥浆 清爽控油","stock_number":0,"restrict_purchase_num":0,"goodsName":"口碑指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154316020599974151881.jpg","description":"整整一大瓶,对抗油田、草莓鼻、粗毛孔无忧虑,从此清新无油,爱上自拍,和美颜相机说拜拜~"},{"id":"559","goods_name":"竹炭净透矿物泥浆面膜110g","shop_price":59,"market_price":99,"goods_img":"https://image.yunifang.com/yunifang/images/goods/559/goods_img/170627164784010618075663103.jpg","reservable":false,"efficacy":"控油净肤 细腻毛孔","stock_number":0,"restrict_purchase_num":0,"goodsName":"控油指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154343010618075663627.jpg","description":"控油能力较好,竹炭味道清新,质地温和,能带走多余油脂,维持肌肤油脂平衡~"}],"goodsIdsList":["189","341","141","313","11","559"],"goodsRelationList":[{"id":"14745","subject_id":"86","goods_id":"189","goodsName":"控油指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516095132819066095187324.jpg","description":"大油田的救星,水和乳的质地都很清爽,轻薄完全不油腻,味道也很好闻没有很刺鼻的香气~"},{"id":"14746","subject_id":"86","goods_id":"341","goodsName":"控油指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154348413637236979205.jpg","description":"油性肌肤的烦恼需要从根源解决问题,该乳液蕴含玉竹精粹,可通过调节油脂平衡,告别油腻烦恼~"},{"id":"14747","subject_id":"86","goods_id":"141","goodsName":"推荐指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154358216020006362358.jpg","description":"油皮妹纸们必备的懒人神器,睡前一抹,整晚无忧,让肌肤在睡眠中变得清新润泽~"},{"id":"14748","subject_id":"86","goods_id":"313","goodsName":"清爽指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17062815439285573627696368.jpg","description":"二次清洁小助手,\u201c大油田\u201d必备,精选玉竹精萃,这个夏天做个不油腻\u201c小清新\u201d~"},{"id":"14749","subject_id":"86","goods_id":"11","goodsName":"口碑指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154316020599974151881.jpg","description":"整整一大瓶,对抗油田、草莓鼻、粗毛孔无忧虑,从此清新无油,爱上自拍,和美颜相机说拜拜~"},{"id":"14750","subject_id":"86","goods_id":"559","goodsName":"控油指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170628154343010618075663627.jpg","description":"控油能力较好,竹炭味道清新,质地温和,能带走多余油脂,维持肌肤油脂平衡~"}],"url":"http://h.yunifang.com/goods/subject.html?id=86","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=86"},{"id":"89","title":"美白系列","detail":"3年研究成果\n5种植物复配美白精华\n滴滴渗透,淡化黑色素\n美白层层递增恢复自然白皙","image":"https://image.yunifang.com/yunifang/images/goods/temp/17051612377286522760845671.jpg","start_time":"2017.05.16 12:38:21","end_time":"2017.11.30 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516123730510604321177291.jpg","template":"templateDefault","goodsList":[{"id":"8","goods_name":"全新升级丨美白嫩肤面膜20","shop_price":129.9,"market_price":359,"goods_img":"https://image.yunifang.com/yunifang/images/goods/8/goods_img/170818182578717903477668239.jpg","reservable":false,"efficacy":"真美白 匠心造","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17081618370419872110796752.jpg","description":"真美白,匠心造!全新升级美白嫩肤面膜,多种美白成分助力美白,国家权威美白特证安全放心~"},{"id":"185","goods_name":"美白嫩肤护肤基础三件套装","shop_price":169.9,"market_price":209.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/185/goods_img/170626104732716695049042487.jpg","reservable":false,"efficacy":"温和清洁 补水美白","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224949016695049047380.jpg","description":"美白嫩肤,名字是代表,品质是保证,还有什么可犹豫的~"},{"id":"10","goods_name":"美白嫩肤睡眠面膜180g","shop_price":69,"market_price":119,"goods_img":"https://image.yunifang.com/yunifang/images/goods/10/goods_img/170626112190919312919673075.jpg","reservable":false,"efficacy":"补水美白 越睡越白","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224882619312919673312.jpg","description":"夜间是皮肤修复黄金期,若想修炼成白雪公主,每晚坚持使用效果更棒,白天也别忘防晒哦~"},{"id":"343","goods_name":"美白嫩肤润肤水150ml","shop_price":69,"market_price":119,"goods_img":"https://image.yunifang.com/yunifang/images/goods/343/goods_img/170626103423611420000294568.jpg","reservable":false,"efficacy":"补水保湿 美白嫩肤","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白效果:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224836611420000297349.jpg","description":"质地不粘稠,洗完脸以后肌肤的第一道滋润,打开肌肤通道,助力美白营养成分吸收~"},{"id":"1101","goods_name":"美白嫩肤泥浆面膜110g","shop_price":69,"market_price":79,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1101/goods_img/170627175248420984384699974.jpg","reservable":false,"efficacy":"清洁净透 美白嫩肤","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白清洁:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224986120984384692751.jpg","description":"为了白,尝尽各种方法,然而效果不佳,这款泥浆,深层吸黑,草本焕白,国家美白特证放心体验~"},{"id":"121","goods_name":"镇店之宝丨美白嫩肤面膜7","shop_price":49.9,"market_price":99,"goods_img":"https://image.yunifang.com/yunifang/images/goods/121/goods_img/17062610568378169043195978.jpg","reservable":false,"efficacy":"镇店之宝 美白爆款","stock_number":0,"restrict_purchase_num":0,"goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17072910225828169043193082.jpg","description":"15分钟亲肤享受,洗完脸以后肌肤的第一道滋润,打开肌肤通道,助力美白营养成分吸收~"}],"goodsIdsList":["8","185","10","343","1101","121"],"goodsRelationList":[{"id":"14443","subject_id":"89","goods_id":"8","goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17081618370419872110796752.jpg","description":"真美白,匠心造!全新升级美白嫩肤面膜,多种美白成分助力美白,国家权威美白特证安全放心~"},{"id":"14444","subject_id":"89","goods_id":"185","goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224949016695049047380.jpg","description":"美白嫩肤,名字是代表,品质是保证,还有什么可犹豫的~"},{"id":"14445","subject_id":"89","goods_id":"10","goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224882619312919673312.jpg","description":"夜间是皮肤修复黄金期,若想修炼成白雪公主,每晚坚持使用效果更棒,白天也别忘防晒哦~"},{"id":"14446","subject_id":"89","goods_id":"343","goodsName":"美白效果:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224836611420000297349.jpg","description":"质地不粘稠,洗完脸以后肌肤的第一道滋润,打开肌肤通道,助力美白营养成分吸收~"},{"id":"14447","subject_id":"89","goods_id":"1101","goodsName":"美白清洁:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224986120984384692751.jpg","description":"为了白,尝尽各种方法,然而效果不佳,这款泥浆,深层吸黑,草本焕白,国家美白特证放心体验~"},{"id":"14448","subject_id":"89","goods_id":"121","goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17072910225828169043193082.jpg","description":"15分钟亲肤享受,洗完脸以后肌肤的第一道滋润,打开肌肤通道,助力美白营养成分吸收~"}],"url":"http://h.yunifang.com/goods/subject.html?id=89","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=89"},{"id":"88","title":"红石榴系列","detail":"肌肤好像透着光\n每一滴红石榴原液含有护肤精粹\n赋予黯哑粗糙肌肤鲜润魅力\n红石榴不仅蕴含多种维他命矿物,更含有石榴多酚和花青素,渗透肌底,深层排浊,自内焕发肌肤红润光泽~\n","image":"https://image.yunifang.com/yunifang/images/goods/temp/170516122967511806265329475.jpg","start_time":"2017.05.16 12:29:44","end_time":"2017.10.31 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516122975121341081719659.jpg","template":"templateDefault","goodsList":[{"id":"99","goods_name":"红石榴矿物洁面乳100ml","shop_price":29.9,"market_price":59,"goods_img":"https://image.yunifang.com/yunifang/images/goods/99/goods_img/170626105849718932898868035.jpg","reservable":false,"efficacy":"温和清洁 提亮肤色","stock_number":0,"restrict_purchase_num":0,"goodsName":"清洁指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051612304946692218255625.jpg","description":"泡沫绵密,清扫毛孔浊质,助力鲜活补水,红石榴精华唤醒肌肤鲜活动力~"},{"id":"71","goods_name":"性价比之王|红石榴矿物补水亮肤十件套","shop_price":159.99,"market_price":319.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/71/goods_img/170914091495612767354095021.jpg","reservable":false,"efficacy":"补水亮肤 改善黯哑","stock_number":0,"restrict_purchase_num":0,"goodsName":"亮肤保湿:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516123365218037277371021.jpg","description":"小仙女们都知道,红石榴有提亮肤色的功效,这款套装炒鸡滋润,而且不油腻,红色大气包装更能俘获人心~"},{"id":"1281","goods_name":"新品眼霜丨红石榴矿物眼霜25g","shop_price":129,"market_price":159,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1281/goods_img/170626102555811776047044227.jpg","reservable":false,"efficacy":"淡退黑眼圈 净彻排浊","stock_number":0,"restrict_purchase_num":0,"goodsName":"淡化眼圈:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170729102668111776047045132.jpg","description":"熊猫眼克星!多种植物精粹,天然舒活肌肤水通道。清爽不油腻,好吸收,细纹看着浅。"},{"id":"151","goods_name":"红石榴鲜活矿物睡眠面膜180g","shop_price":99,"market_price":119,"goods_img":"https://image.yunifang.com/yunifang/images/goods/151/goods_img/170626105075810681841436827.jpg","reservable":false,"efficacy":"源源养护 鲜活亮颜","stock_number":0,"restrict_purchase_num":0,"goodsName":"提亮指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170729102811710681841435351.jpg","description":"看得见的鲜活粒子,增添肌肤鲜活能量!啫喱态的面膜,质地清爽不油腻!"}],"goodsIdsList":["99","1652","1250","71","1281","151"],"goodsRelationList":[{"id":"13960","subject_id":"88","goods_id":"99","goodsName":"清洁指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051612304946692218255625.jpg","description":"泡沫绵密,清扫毛孔浊质,助力鲜活补水,红石榴精华唤醒肌肤鲜活动力~"},{"id":"13961","subject_id":"88","goods_id":"1652","goodsName":"亮肤指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516123680716693836711273.jpg","description":"红石榴精华有助于打散黑色素群,提亮肤色更给力,肤色暗黄的小伙伴们看过来~"},{"id":"13962","subject_id":"88","goods_id":"1250","goodsName":"抗氧化:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516123022219451838196701.jpg","description":"你的梳妆台必不可少一瓶面霜,告别熬夜和岁月留下的黄脸,为肌肤注入鲜活能量~"},{"id":"13963","subject_id":"88","goods_id":"71","goodsName":"亮肤保湿:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170516123365218037277371021.jpg","description":"小仙女们都知道,红石榴有提亮肤色的功效,这款套装炒鸡滋润,而且不油腻,红色大气包装更能俘获人心~"},{"id":"13964","subject_id":"88","goods_id":"1281","goodsName":"淡化眼圈:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170729102668111776047045132.jpg","description":"熊猫眼克星!多种植物精粹,天然舒活肌肤水通道。清爽不油腻,好吸收,细纹看着浅。"},{"id":"13965","subject_id":"88","goods_id":"151","goodsName":"提亮指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170729102811710681841435351.jpg","description":"看得见的鲜活粒子,增添肌肤鲜活能量!啫喱态的面膜,质地清爽不油腻!"}],"url":"http://h.yunifang.com/goods/subject.html?id=88","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=88"},{"id":"101","title":"黑玫瑰系列","detail":"层层筛选优质黑玫瑰\n黑玫瑰精粹含单宁酸及植物多酚\n解决肌肤黯哑不均,显著提亮","image":"https://image.yunifang.com/yunifang/images/goods/temp/170731095719116873211372276.jpg","start_time":"2017.07.25 00:00:00","end_time":"2018.01.31 00:00:00","show_number":6,"state":"1","sort":0,"descImage":"https://image.yunifang.com/yunifang/images/goods/temp/17073109575402630402867921.jpg","template":"templateDefault","goodsList":[{"id":"4","goods_name":"黑玫瑰矿物洁面乳100ml","shop_price":49,"market_price":59,"goods_img":"https://image.yunifang.com/yunifang/images/goods/4/goods_img/17062611262464209534577694.jpg","reservable":false,"efficacy":"温和清洁 提亮肤色","stock_number":0,"restrict_purchase_num":0,"goodsName":"清洁提亮:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17073110055984209534577564.jpg","description":"泡沫细腻,清洁清洁肌肤,一扫城市雾霾导致的肌肤污垢,同时黑玫瑰精粹由内而外提亮肤色~"},{"id":"1805","goods_name":"黑玫瑰护肤基础三件套","shop_price":269.9,"market_price":387,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1805/goods_img/17050414108281642074189987.jpg","reservable":false,"efficacy":"击退黯哑 提亮莹润","stock_number":0,"restrict_purchase_num":0,"goodsName":"推荐指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170731100820019181327789327.jpg","description":"3重亮肤能量,层层淡化黯哑,给予肌肤奢宠养护~"},{"id":"127","goods_name":"黑玫瑰泥浆面膜260g","shop_price":199,"market_price":199,"goods_img":"https://image.yunifang.com/yunifang/images/goods/127/goods_img/170626145396916224693431300.jpg","reservable":false,"efficacy":"滋养润滑 提亮肤色","stock_number":0,"restrict_purchase_num":0,"goodsName":"清洁亮肤:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170731101056416224693431021.jpg","description":"大多肌肤问题源于脸部清洁不当,黑玫瑰泥浆解决护肤根本问题~"},{"id":"245","goods_name":"黑玫瑰睡眠面膜护肤四件套装","shop_price":429.9,"market_price":539.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/245/goods_img/17062610416972131702264912.jpg","reservable":false,"efficacy":"滋养肌肤 提亮肤色","stock_number":0,"restrict_purchase_num":0,"goodsName":"综合指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707311016882131702267162.jpg","description":"一套护肤装备,解决肌肤粗糙暗沉,熟龄肌首选~"}],"goodsIdsList":["403","4","1805","127","83","245"],"goodsRelationList":[{"id":"13947","subject_id":"101","goods_id":"403","goodsName":"推荐指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707311002441167403859909.jpg","description":"黑玫瑰精粹集于一瓶,一小瓶精华液唤醒肌肤夺目光彩"},{"id":"13948","subject_id":"101","goods_id":"4","goodsName":"清洁提亮:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17073110055984209534577564.jpg","description":"泡沫细腻,清洁清洁肌肤,一扫城市雾霾导致的肌肤污垢,同时黑玫瑰精粹由内而外提亮肤色~"},{"id":"13949","subject_id":"101","goods_id":"1805","goodsName":"推荐指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170731100820019181327789327.jpg","description":"3重亮肤能量,层层淡化黯哑,给予肌肤奢宠养护~"},{"id":"13950","subject_id":"101","goods_id":"127","goodsName":"清洁亮肤:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170731101056416224693431021.jpg","description":"大多肌肤问题源于脸部清洁不当,黑玫瑰泥浆解决护肤根本问题~"},{"id":"13951","subject_id":"101","goods_id":"83","goodsName":"补水提亮:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17073110134825656554699188.jpg","description":"15分钟亲肤享受,敷面膜时黑玫瑰自然清新的花香令人身心愉悦,于芬芳中绽放美好气色~"},{"id":"13952","subject_id":"101","goods_id":"245","goodsName":"综合指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707311016882131702267162.jpg","description":"一套护肤装备,解决肌肤粗糙暗沉,熟龄肌首选~"}],"url":"http://h.yunifang.com/goods/subject.html?id=101","wapUrl":"http://vip.yunifang.com/goods/subject.html?id=101"}]         * activityInfo : {"activityAreaDisplay":"1","activityInfoList":[{"id":"60","activityImg":"https://image.yunifang.com/yunifang/images/goods/temp/170527155491221343694704636.jpg","activityType":"60","activityData":"69","activityDataDetail":"69","activityAreaDisplay":"1","countDownEnable":"0","remark":"搭配购买立减","sort":0},{"id":"21","activityImg":"https://image.yunifang.com/yunifang/images/goods/temp/17051718251658680692616281.jpg","activityType":"1","activityData":"http://h.yunifang.com/invite/invite.html?login_check=2","activityDataDetail":"http%3A%2F%2Fh.yunifang.com%2Finvite%2Finvite.html%3Flogin_check%3D2","activityAreaDisplay":"1","countDownEnable":"0","sort":0}]}         * ad1 : [{"id":"1147","createtime":"2017.10.09 08:33:42","lastupdatetime":"2017.10.09 08:33:46","image":"https://image.yunifang.com/yunifang/images/goods/ad0/17100908319495742677657462.jpg","ad_type":0,"sort":1414,"position":0,"enabled":1,"createuser":"leiqi","lastupdateuser":"leiqi","ad_type_dynamic":"1","ad_type_dynamic_data":"http://h.yunifang.com/h/comment.html","ad_type_dynamic_detail":"http%3A%2F%2Fh.yunifang.com%2Fh%2Fcomment.html","title":"10月商品好评有礼","channelType":"0"},{"id":"1047","createtime":"2017.07.05 19:49:35","lastupdatetime":"2017.09.28 22:16:07","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170905143497021095281713081.jpg","ad_type":0,"sort":1404,"position":0,"enabled":1,"createuser":"hani","lastupdateuser":"leiqi","ad_type_dynamic":"2","ad_type_dynamic_data":"8","ad_type_dynamic_detail":"8","show_channel":"1,2,3,4","title":"美白嫩肤新品面膜","channelType":"0"},{"id":"1055","createtime":"2017.07.19 14:52:20","lastupdatetime":"2017.10.09 10:53:21","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170905143499118006873413769.jpg","ad_type":0,"sort":1403,"position":0,"enabled":1,"createuser":"xicheng","lastupdateuser":"hani","ad_type_dynamic":"2","ad_type_dynamic_data":"1870","ad_type_dynamic_detail":"1870","show_channel":"1,2,3,4","title":"820玉润雪肌膜盒","channelType":"0"},{"id":"1088","createtime":"2017.08.23 09:32:02","lastupdatetime":"2017.09.28 10:24:57","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170823222049920659891841095.jpg","ad_type":0,"sort":1400,"position":0,"enabled":1,"createuser":"hani","lastupdateuser":"xicheng","ad_type_dynamic":"1","ad_type_dynamic_data":"http://h.yunifang.com/h/video.html","ad_type_dynamic_detail":"http%3A%2F%2Fh.yunifang.com%2Fh%2Fvideo.html","show_channel":"1,2,3,4","title":"国货力量","channelType":"0"}]         * ad5 : [{"id":"359","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170516143575610973073847273.png","ad_type":4,"sort":295,"position":5,"enabled":0,"ad_type_dynamic":"1","ad_type_dynamic_data":"http://h.yunifang.com/sign/sign.html?login_check=2","ad_type_dynamic_detail":"http%3A%2F%2Fh.yunifang.com%2Fsign%2Fsign.html%3Flogin_check%3D2","show_channel":"1,2","title":"每日签到"},{"id":"358","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170516143522410954603429327.png","ad_type":1,"url":"http://mobile.hmeili.com/yunifang/web/member/gift","sort":293,"position":5,"enabled":0,"ad_type_dynamic":"1","ad_type_dynamic_data":"http://m.yunifang.com/yunifang/mobile/creditShop/loginDBShop?dbredirect=http://www.duiba.com.cn/chome/index&login_check=2","ad_type_dynamic_detail":"http%3A%2F%2Fm.yunifang.com%2Fyunifang%2Fmobile%2FcreditShop%2FloginDBShop%3Fdbredirect%3Dhttp%3A%2F%2Fwww.duiba.com.cn%2Fchome%2Findex%26login_check%3D2","show_channel":"1,2","title":"积分商城"},{"id":"357","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170516143491410936133008135.png","ad_type":1,"url":"http://mobile.hmeili.com/yunifang/web/help/cash","sort":291,"position":5,"enabled":0,"ad_type_dynamic":"1","ad_type_dynamic_data":"http://h.yunifang.com/exchange/code_app.html?login_check=1","ad_type_dynamic_detail":"http%3A%2F%2Fh.yunifang.com%2Fexchange%2Fcode_app.html%3Flogin_check%3D1","show_channel":"1,2","title":"兑换专区"},{"id":"360","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170516143497810917662585920.png","ad_type":1,"url":"http://www.yunifang.com/a/fangweichaxun/wap_fwcx.html","sort":289,"position":5,"enabled":0,"ad_type_dynamic":"1","ad_type_dynamic_data":"http://www.yunifang.com/a/fangweichaxun/wap_fwcx.html","ad_type_dynamic_detail":"http%3A%2F%2Fwww.yunifang.com%2Fa%2Ffangweichaxun%2Fwap_fwcx.html","show_channel":"1,2,3,4","title":"真伪查询"}]         * ad8 : [{"id":"1056","image":"https://image.yunifang.com/yunifang/images/goods/ad0/170719150582816742818457761.png","ad_type":0,"sort":57,"position":8,"enabled":0,"description":"人气好物超值推荐","ad_type_dynamic":"1","ad_type_dynamic_data":"http://vip.yunifang.com/goods/recommend.html?id=87","ad_type_dynamic_detail":"http%3A%2F%2Fh.yunifang.com%2Fgoods%2Frecommend.html%3Fid%3D87","show_channel":"1,2,3,4","title":"新鲜每一天","goods":{"collect_count":0,"reservable":false,"restriction":0,"restrict_purchase_num":0,"is_coupon_allowed":false,"allocated_stock":0,"is_gift":0}},{"id":"954","image":"https://image.yunifang.com/yunifang/images/goods/ad0/171011094966420374041489003.jpg","ad_type":0,"sort":56,"position":8,"enabled":0,"description":"补水滢亮面膜礼盒","ad_type_dynamic":"1","ad_type_dynamic_data":"http://vip.yunifang.com/community_wap/theme-detail.html?id=14319","ad_type_dynamic_detail":"http%3A%2F%2Fvip.yunifang.com%2Fcommunity%2Ftheme-detail.html%3Fid%3D14319","show_channel":"1,2,3,4","title":"免费试用","goods":{"collect_count":0,"reservable":false,"restriction":0,"restrict_purchase_num":0,"is_coupon_allowed":false,"allocated_stock":0,"is_gift":0}},{"id":"1125","image":"https://image.yunifang.com/yunifang/images/goods/ad0/17093010304768203378533256.jpg","ad_type":0,"sort":54,"position":8,"enabled":0,"description":"解救干燥肌","ad_type_dynamic":"2","ad_type_dynamic_data":"16","ad_type_dynamic_detail":"16","show_channel":"1,2,3,4","title":"秋季热销","goods":{"collect_count":0,"reservable":false,"restriction":0,"restrict_purchase_num":0,"is_coupon_allowed":false,"allocated_stock":0,"is_gift":0}}]         * defaultGoodsList : [{"id":"121","goods_name":"镇店之宝丨美白嫩肤面膜7","shop_price":49.9,"market_price":99,"goods_img":"https://image.yunifang.com/yunifang/images/goods/121/goods_img/17062610568378169043195978.jpg","reservable":false,"efficacy":"镇店之宝 美白爆款","stock_number":0,"restrict_purchase_num":0},{"id":"389","goods_name":"热销爆款丨清爽平衡矿物黑面膜21","shop_price":99.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/389/goods_img/17062610265116850439553337.jpg","reservable":false,"efficacy":"以黑吸黑 净透亮肤","stock_number":0,"restrict_purchase_num":0},{"id":"684","goods_name":"解救肌渴丨花粹水润面膜套装10","shop_price":29.9,"market_price":139,"goods_img":"https://image.yunifang.com/yunifang/images/goods/684/goods_img/17062610401397749701177609.jpg","reservable":false,"efficacy":"水润充盈 鲜嫩少女肌","stock_number":0,"restrict_purchase_num":0},{"id":"6","goods_name":"好用不贵丨亮颜水润蚕丝面膜(寂地定制版)","shop_price":59.9,"market_price":239.9,"goods_img":"https://image.yunifang.com/yunifang/images/goods/6/goods_img/170626112597120167739086821.jpg","reservable":false,"efficacy":"深层补水 提亮肤色","stock_number":0,"restrict_purchase_num":0},{"id":"772","goods_name":"全新升级丨清润莹亮黑膜套装21","shop_price":99.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/772/goods_img/17090514228269026987111180.jpg","reservable":false,"efficacy":"自然莹亮 水感瓷肌","stock_number":0,"restrict_purchase_num":0},{"id":"5","goods_name":"金桂花矿物眼膜贴60","shop_price":69,"market_price":129,"goods_img":"https://image.yunifang.com/yunifang/images/goods/5/goods_img/170626112553213363513709796.jpg","reservable":false,"efficacy":"补水靓眼 改善熊猫眼","stock_number":0,"restrict_purchase_num":0}]         * creditRecived : false         * goodsSpreeActivity : {"id":"327","name":"10.13早场","startDate":"2017.10.13 10:00:00","endDate":"2017.10.13 16:00:00","status":"1","startSeconds":"-12118","endSeconds":"9481","isChecked":"0","goodsList":[{"id":"997","goodsSpreeId":"327","goodsId":"340","goodsName":"【使用期一年以上介意慎拍】黑玫瑰矿物柔肤乳液120ml","goodsImg":"https://image.yunifang.com/yunifang/images/goods/340/goods_img/170626103460417447209262417.jpg","marketPrice":169,"activityPrice":39.9,"salesRatio":0,"stockNumber":30,"releaseNumber":40},{"id":"998","goodsSpreeId":"327","goodsId":"1324","goodsName":"鲜气少女肌|水光轻灵焕彩面膜5","goodsImg":"https://image.yunifang.com/yunifang/images/goods/1324/goods_img/170626102366110382576889824.jpg","marketPrice":129,"activityPrice":59.9,"salesRatio":0,"stockNumber":30,"releaseNumber":30},{"id":"999","goodsSpreeId":"327","goodsId":"903","goodsName":"绿豆原浆泥面膜100g","goodsImg":"https://image.yunifang.com/yunifang/images/goods/903/goods_img/170627180542017051678666200.jpg","marketPrice":99,"activityPrice":49.9,"salesRatio":0,"stockNumber":28,"releaseNumber":30}]}         */        private ActivityInfoBean activityInfo;        private boolean creditRecived;        private GoodsSpreeActivityBean goodsSpreeActivity;        private List<SubjectsBean> subjects;        private List<Ad1Bean> ad1;        private List<Ad5Bean> ad5;        private List<Ad8Bean> ad8;        private List<DefaultGoodsListBean> defaultGoodsList;        public ActivityInfoBean getActivityInfo() {            return activityInfo;        }        public void setActivityInfo(ActivityInfoBean activityInfo) {            this.activityInfo = activityInfo;        }        public boolean isCreditRecived() {            return creditRecived;        }        public void setCreditRecived(boolean creditRecived) {            this.creditRecived = creditRecived;        }        public GoodsSpreeActivityBean getGoodsSpreeActivity() {            return goodsSpreeActivity;        }        public void setGoodsSpreeActivity(GoodsSpreeActivityBean goodsSpreeActivity) {            this.goodsSpreeActivity = goodsSpreeActivity;        }        public List<SubjectsBean> getSubjects() {            return subjects;        }        public void setSubjects(List<SubjectsBean> subjects) {            this.subjects = subjects;        }        public List<Ad1Bean> getAd1() {            return ad1;        }        public void setAd1(List<Ad1Bean> ad1) {            this.ad1 = ad1;        }        public List<Ad5Bean> getAd5() {            return ad5;        }        public void setAd5(List<Ad5Bean> ad5) {            this.ad5 = ad5;        }        public List<Ad8Bean> getAd8() {            return ad8;        }        public void setAd8(List<Ad8Bean> ad8) {            this.ad8 = ad8;        }        public List<DefaultGoodsListBean> getDefaultGoodsList() {            return defaultGoodsList;        }        public void setDefaultGoodsList(List<DefaultGoodsListBean> defaultGoodsList) {            this.defaultGoodsList = defaultGoodsList;        }        public static class ActivityInfoBean {            /**             * activityAreaDisplay : 1             * activityInfoList : [{"id":"60","activityImg":"https://image.yunifang.com/yunifang/images/goods/temp/170527155491221343694704636.jpg","activityType":"60","activityData":"69","activityDataDetail":"69","activityAreaDisplay":"1","countDownEnable":"0","remark":"搭配购买立减","sort":0},{"id":"21","activityImg":"https://image.yunifang.com/yunifang/images/goods/temp/17051718251658680692616281.jpg","activityType":"1","activityData":"http://h.yunifang.com/invite/invite.html?login_check=2","activityDataDetail":"http%3A%2F%2Fh.yunifang.com%2Finvite%2Finvite.html%3Flogin_check%3D2","activityAreaDisplay":"1","countDownEnable":"0","sort":0}]             */            private String activityAreaDisplay;            private List<ActivityInfoListBean> activityInfoList;            public String getActivityAreaDisplay() {                return activityAreaDisplay;            }            public void setActivityAreaDisplay(String activityAreaDisplay) {                this.activityAreaDisplay = activityAreaDisplay;            }            public List<ActivityInfoListBean> getActivityInfoList() {                return activityInfoList;            }            public void setActivityInfoList(List<ActivityInfoListBean> activityInfoList) {                this.activityInfoList = activityInfoList;            }            public static class ActivityInfoListBean {                /**                 * id : 60                 * activityImg : https://image.yunifang.com/yunifang/images/goods/temp/170527155491221343694704636.jpg                 * activityType : 60                 * activityData : 69                 * activityDataDetail : 69                 * activityAreaDisplay : 1                 * countDownEnable : 0                 * remark : 搭配购买立减                 * sort : 0                 */                private String id;                private String activityImg;                private String activityType;                private String activityData;                private String activityDataDetail;                private String activityAreaDisplay;                private String countDownEnable;                private String remark;                private int sort;                public String getId() {                    return id;                }                public void setId(String id) {                    this.id = id;                }                public String getActivityImg() {                    return activityImg;                }                public void setActivityImg(String activityImg) {                    this.activityImg = activityImg;                }                public String getActivityType() {                    return activityType;                }                public void setActivityType(String activityType) {                    this.activityType = activityType;                }                public String getActivityData() {                    return activityData;                }                public void setActivityData(String activityData) {                    this.activityData = activityData;                }                public String getActivityDataDetail() {                    return activityDataDetail;                }                public void setActivityDataDetail(String activityDataDetail) {                    this.activityDataDetail = activityDataDetail;                }                public String getActivityAreaDisplay() {                    return activityAreaDisplay;                }                public void setActivityAreaDisplay(String activityAreaDisplay) {                    this.activityAreaDisplay = activityAreaDisplay;                }                public String getCountDownEnable() {                    return countDownEnable;                }                public void setCountDownEnable(String countDownEnable) {                    this.countDownEnable = countDownEnable;                }                public String getRemark() {                    return remark;                }                public void setRemark(String remark) {                    this.remark = remark;                }                public int getSort() {                    return sort;                }                public void setSort(int sort) {                    this.sort = sort;                }            }        }        public static class GoodsSpreeActivityBean {            /**             * id : 327             * name : 10.13早场             * startDate : 2017.10.13 10:00:00             * endDate : 2017.10.13 16:00:00             * status : 1             * startSeconds : -12118             * endSeconds : 9481             * isChecked : 0             * goodsList : [{"id":"997","goodsSpreeId":"327","goodsId":"340","goodsName":"【使用期一年以上介意慎拍】黑玫瑰矿物柔肤乳液120ml","goodsImg":"https://image.yunifang.com/yunifang/images/goods/340/goods_img/170626103460417447209262417.jpg","marketPrice":169,"activityPrice":39.9,"salesRatio":0,"stockNumber":30,"releaseNumber":40},{"id":"998","goodsSpreeId":"327","goodsId":"1324","goodsName":"鲜气少女肌|水光轻灵焕彩面膜5","goodsImg":"https://image.yunifang.com/yunifang/images/goods/1324/goods_img/170626102366110382576889824.jpg","marketPrice":129,"activityPrice":59.9,"salesRatio":0,"stockNumber":30,"releaseNumber":30},{"id":"999","goodsSpreeId":"327","goodsId":"903","goodsName":"绿豆原浆泥面膜100g","goodsImg":"https://image.yunifang.com/yunifang/images/goods/903/goods_img/170627180542017051678666200.jpg","marketPrice":99,"activityPrice":49.9,"salesRatio":0,"stockNumber":28,"releaseNumber":30}]             */            private String id;            private String name;            private String startDate;            private String endDate;            private String status;            private String startSeconds;            private String endSeconds;            private String isChecked;            private List<GoodsListBean> goodsList;            public String getId() {                return id;            }            public void setId(String id) {                this.id = id;            }            public String getName() {                return name;            }            public void setName(String name) {                this.name = name;            }            public String getStartDate() {                return startDate;            }            public void setStartDate(String startDate) {                this.startDate = startDate;            }            public String getEndDate() {                return endDate;            }            public void setEndDate(String endDate) {                this.endDate = endDate;            }            public String getStatus() {                return status;            }            public void setStatus(String status) {                this.status = status;            }            public String getStartSeconds() {                return startSeconds;            }            public void setStartSeconds(String startSeconds) {                this.startSeconds = startSeconds;            }            public String getEndSeconds() {                return endSeconds;            }            public void setEndSeconds(String endSeconds) {                this.endSeconds = endSeconds;            }            public String getIsChecked() {                return isChecked;            }            public void setIsChecked(String isChecked) {                this.isChecked = isChecked;            }            public List<GoodsListBean> getGoodsList() {                return goodsList;            }            public void setGoodsList(List<GoodsListBean> goodsList) {                this.goodsList = goodsList;            }            public static class GoodsListBean {                /**                 * id : 997                 * goodsSpreeId : 327                 * goodsId : 340                 * goodsName : 【使用期一年以上介意慎拍】黑玫瑰矿物柔肤乳液120ml                 * goodsImg : https://image.yunifang.com/yunifang/images/goods/340/goods_img/170626103460417447209262417.jpg                 * marketPrice : 169.0                 * activityPrice : 39.9                 * salesRatio : 0                 * stockNumber : 30                 * releaseNumber : 40                 */                private String id;                private String goodsSpreeId;                private String goodsId;                private String goodsName;                private String goodsImg;                private double marketPrice;                private double activityPrice;                private int salesRatio;                private int stockNumber;                private int releaseNumber;                public String getId() {                    return id;                }                public void setId(String id) {                    this.id = id;                }                public String getGoodsSpreeId() {                    return goodsSpreeId;                }                public void setGoodsSpreeId(String goodsSpreeId) {                    this.goodsSpreeId = goodsSpreeId;                }                public String getGoodsId() {                    return goodsId;                }                public void setGoodsId(String goodsId) {                    this.goodsId = goodsId;                }                public String getGoodsName() {                    return goodsName;                }                public void setGoodsName(String goodsName) {                    this.goodsName = goodsName;                }                public String getGoodsImg() {                    return goodsImg;                }                public void setGoodsImg(String goodsImg) {                    this.goodsImg = goodsImg;                }                public double getMarketPrice() {                    return marketPrice;                }                public void setMarketPrice(double marketPrice) {                    this.marketPrice = marketPrice;                }                public double getActivityPrice() {                    return activityPrice;                }                public void setActivityPrice(double activityPrice) {                    this.activityPrice = activityPrice;                }                public int getSalesRatio() {                    return salesRatio;                }                public void setSalesRatio(int salesRatio) {                    this.salesRatio = salesRatio;                }                public int getStockNumber() {                    return stockNumber;                }                public void setStockNumber(int stockNumber) {                    this.stockNumber = stockNumber;                }                public int getReleaseNumber() {                    return releaseNumber;                }                public void setReleaseNumber(int releaseNumber) {                    this.releaseNumber = releaseNumber;                }            }        }        public static class SubjectsBean {            /**             * id : 84             * title : 新品上市             * detail : 质本天然,探寻自然生命的非凡能量,给躁动的肌肤一场新的旅行~~             * image : https://image.yunifang.com/yunifang/images/goods/temp/171011162655217457875119759.jpg             * start_time : 2017.05.16 09:26:13             * end_time : 2017.10.31 00:00:00             * show_number : 6             * state : 1             * sort : 0             * descImage : https://image.yunifang.com/yunifang/images/goods/temp/17051609265319705925918251.jpg             * template : templateDefault             * goodsList : [{"id":"492","goods_name":"盈透美肌黑膜套装(插画版)","shop_price":99.9,"market_price":298,"goods_img":"https://image.yunifang.com/yunifang/images/goods/492/goods_img/171011191068814258195256706.jpg","reservable":false,"efficacy":"以黑吸黑 润透亮颜","stock_number":0,"restrict_purchase_num":0,"goodsName":"PG one热荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011192212214258195254179.jpg","description":"三重植物精粹,三重水润膜力,美时美刻,水润透亮~"},{"id":"2076","goods_name":"鲜嫩美莓面膜套装","shop_price":129.9,"market_price":299,"goods_img":"https://image.yunifang.com/yunifang/images/goods/2076/goods_img/170930212555714134276722977.jpg","reservable":false,"efficacy":"果然水润 嫩颜美莓","stock_number":0,"restrict_purchase_num":0,"goodsName":"水润指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119283583452898243380.jpg","description":"畅享鲜果派对,肌肤水嫩鲜活,萃取自然野草莓、黑莓、巴西莓精华,三款搭配持续水嫩鲜活~"},{"id":"1189","goods_name":"清透盈润面膜套装21","shop_price":79.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1189/goods_img/17093019432252555150652465.jpg","reservable":false,"efficacy":"水感剔透 鲜颜嫩肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"鲜嫩指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119312216937168845205.jpg","description":"精选玫瑰、竹萃自然精粹,清洁力、补水力、亮泽度全新升级,另肌肤水感剔透~"},{"id":"1638","goods_name":"全新升级丨嫩肌酵素黑膜礼盒21","shop_price":139.9,"market_price":299,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1638/goods_img/170905151496114997886544712.jpg","reservable":false,"efficacy":"极地酵素 \u201c\u201d醒美肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"推荐指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170905182614314997886548523.jpg","description":"蕴含南极活性补水酵素精华,持久补水锁水,轻蔬鲜果酵素助力平衡水油~"},{"id":"1830","goods_name":"新品尝鲜|水润茶萃微囊黑面膜20","shop_price":129.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1830/goods_img/17063017284962337647468682.jpg","reservable":false,"efficacy":"只要一片 水润一天","stock_number":0,"restrict_purchase_num":0,"goodsName":"新品推荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1705240026717476518778188.jpg","description":"茶萃微囊精华,开创持续保湿新体验,只要一片,水润一天,持续保湿12小时以上"},{"id":"2091","goods_name":"新品上市丨V7伪妆素颜霜20g","shop_price":79,"market_price":79,"goods_img":"https://image.yunifang.com/yunifang/images/goods/2091/goods_img/170905172822119555059792173.jpg","reservable":false,"efficacy":"即刻提亮 闪亮肤色","stock_number":0,"restrict_purchase_num":0,"goodsName":"遮瑕指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709051825818467283561992.jpg","description":"如果你是素颜控,这款即刻提亮,闪亮肤色的懒人新品素颜霜你值得拥有~"},{"id":"2039","goods_name":"水润柔嫩黑膜21","shop_price":89.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/2039/goods_img/17093020002498271170145819.jpg","reservable":false,"efficacy":"自然纯粹 水润纯净","stock_number":0,"restrict_purchase_num":0,"goodsName":"补水指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011193181418890895139029.jpg","description":"精选龙头竹菁萃、牛油果精粹、黑珍珠精粹,给你自然纯粹,水润纯净体验~"},{"id":"745","goods_name":"全新升级丨晶亮红石榴面膜7","shop_price":79,"market_price":89,"goods_img":"https://image.yunifang.com/yunifang/images/goods/745/goods_img/17081617418998795654179347.jpg","reservable":false,"efficacy":"深度排浊 一扫黯哑","stock_number":0,"restrict_purchase_num":0,"goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170816184151311258603701437.jpg","description":"萃取红石榴原液,滴滴蕴含鲜活能量,清洁排浊、透亮无瑕,改善粗糙黯哑小能手"},{"id":"1870","goods_name":"新品尝鲜|玉润雪肌黑白膜盒20","shop_price":129.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1870/goods_img/17071909555120332464127704.jpg","reservable":false,"efficacy":"黑白膜力 美肌如玉","stock_number":0,"restrict_purchase_num":0,"goodsName":"新品推荐:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707171037861467283567706.jpg","description":"白膜胶原蛋白精华,昼弹润生态库,黑膜三分子玻尿酸,夜补水先锋。黑白膜力,水肌如玉~"},{"id":"1919","goods_name":"透亮红酒酵力面膜21","shop_price":129.9,"market_price":239,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1919/goods_img/170630171021217601465422538.jpg","reservable":false,"efficacy":"红酒透亮 酵醒美肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224599017601465422520.jpg","description":"全新添加西班牙酵母发酵液,融合法国红酒多酚亮肤成分,加乘亮肤功效~"},{"id":"772","goods_name":"全新升级丨清润莹亮黑膜套装21","shop_price":99.9,"market_price":297,"goods_img":"https://image.yunifang.com/yunifang/images/goods/772/goods_img/17090514228269026987111180.jpg","reservable":false,"efficacy":"自然莹亮 水感瓷肌","stock_number":0,"restrict_purchase_num":0,"goodsName":"水亮能量:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709191414112467283564077.jpg","description":"自然莹亮,水感瓷肌,精选龙头竹、葡萄籽,演绎水亮二重奏~"},{"id":"487","goods_name":"海洋弹性蛋白矿物精华眼霜25g","shop_price":139,"market_price":169,"goods_img":"https://image.yunifang.com/yunifang/images/goods/487/goods_img/170626101843492134395965.jpg","reservable":false,"efficacy":"提拉紧致 润亮双眸","stock_number":0,"restrict_purchase_num":0,"goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151917130467283566572.jpg","description":"不要等到有皱纹了才想起用眼霜,不要让眼睛放大你的年龄,每一滴自然精粹,都为你打造明亮双眸~"},{"id":"1281","goods_name":"新品眼霜丨红石榴矿物眼霜25g","shop_price":129,"market_price":159,"goods_img":"https://image.yunifang.com/yunifang/images/goods/1281/goods_img/170626102555811776047044227.jpg","reservable":false,"efficacy":"淡退黑眼圈 净彻排浊","stock_number":0,"restrict_purchase_num":0,"goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151918330467283566999.jpg","description":"熊猫眼克星!多种植物精粹,天然舒活肌肤水通道,清爽不油腻,好吸收,和细纹说拜拜~"}]             * goodsIdsList : ["492","2076","1923","1189","1638","1830","2091","2039","745","1870","1919","772","1280","487","1281","1250"]             * goodsRelationList : [{"id":"14815","subject_id":"84","goods_id":"492","goodsName":"PG one热荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011192212214258195254179.jpg","description":"三重植物精粹,三重水润膜力,美时美刻,水润透亮~"},{"id":"14816","subject_id":"84","goods_id":"2076","goodsName":"水润指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119283583452898243380.jpg","description":"畅享鲜果派对,肌肤水嫩鲜活,萃取自然野草莓、黑莓、巴西莓精华,三款搭配持续水嫩鲜活~"},{"id":"14817","subject_id":"84","goods_id":"1923","goodsName":"美白指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170816184068619872110797032.jpg","description":"真美白,匠心造!全新升级美白嫩肤面膜,多种美白成分助力美白,国家权威美白特证安全放心~"},{"id":"14818","subject_id":"84","goods_id":"1189","goodsName":"鲜嫩指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17101119312216937168845205.jpg","description":"精选玫瑰、竹萃自然精粹,清洁力、补水力、亮泽度全新升级,另肌肤水感剔透~"},{"id":"14819","subject_id":"84","goods_id":"1638","goodsName":"推荐指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170905182614314997886548523.jpg","description":"蕴含南极活性补水酵素精华,持久补水锁水,轻蔬鲜果酵素助力平衡水油~"},{"id":"14820","subject_id":"84","goods_id":"1830","goodsName":"新品推荐:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1705240026717476518778188.jpg","description":"茶萃微囊精华,开创持续保湿新体验,只要一片,水润一天,持续保湿12小时以上"},{"id":"14821","subject_id":"84","goods_id":"2091","goodsName":"遮瑕指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709051825818467283561992.jpg","description":"如果你是素颜控,这款即刻提亮,闪亮肤色的懒人新品素颜霜你值得拥有~"},{"id":"14822","subject_id":"84","goods_id":"2039","goodsName":"补水指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/171011193181418890895139029.jpg","description":"精选龙头竹菁萃、牛油果精粹、黑珍珠精粹,给你自然纯粹,水润纯净体验~"},{"id":"14823","subject_id":"84","goods_id":"745","goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170816184151311258603701437.jpg","description":"萃取红石榴原液,滴滴蕴含鲜活能量,清洁排浊、透亮无瑕,改善粗糙黯哑小能手"},{"id":"14824","subject_id":"84","goods_id":"1870","goodsName":"新品推荐:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1707171037861467283567706.jpg","description":"白膜胶原蛋白精华,昼弹润生态库,黑膜三分子玻尿酸,夜补水先锋。黑白膜力,水肌如玉~"},{"id":"14825","subject_id":"84","goods_id":"1919","goodsName":"亮肤指数:★★★★★","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/170630224599017601465422520.jpg","description":"全新添加西班牙酵母发酵液,融合法国红酒多酚亮肤成分,加乘亮肤功效~"},{"id":"14826","subject_id":"84","goods_id":"772","goodsName":"水亮能量:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1709191414112467283564077.jpg","description":"自然莹亮,水感瓷肌,精选龙头竹、葡萄籽,演绎水亮二重奏~"},{"id":"14827","subject_id":"84","goods_id":"1280","goodsName":"遮瑕指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/17051609285005287026507049.jpg","description":"日本进口粉扑,云母成分强遮瑕,接触肌肤绵密柔软,粉体细腻,妆感轻薄,完美遮瑕~"},{"id":"14828","subject_id":"84","goods_id":"487","goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151917130467283566572.jpg","description":"不要等到有皱纹了才想起用眼霜,不要让眼睛放大你的年龄,每一滴自然精粹,都为你打造明亮双眸~"},{"id":"14829","subject_id":"84","goods_id":"1281","goodsName":"抗皱指数:★★★☆☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706151918330467283566999.jpg","description":"熊猫眼克星!多种植物精粹,天然舒活肌肤水通道,清爽不油腻,好吸收,和细纹说拜拜~"},{"id":"14830","subject_id":"84","goods_id":"1250","goodsName":"抗氧化指数:★★★★☆","goodsImage":"https://image.yunifang.com/yunifang/images/goods/temp/1706021026770467283563014.jpg","description":"你的梳妆台必不可少一瓶面霜,告别熬夜和岁月留下的黄脸,为肌肤注入鲜活能量。"}]             * url : http://h.yunifang.com/goods/subject.html?id=84             * wapUrl : http://vip.yunifang.com/goods/subject.html?id=84             */            private String id;            private String title;            private String detail;            private String image;            private String start_time;            private String end_time;            private int show_number;            private String state;            private int sort;            private String descImage;            private String template;            private String url;            private String wapUrl;            private List<GoodsListBeanX> goodsList;            private List<String> goodsIdsList;            private List<GoodsRelationListBean> goodsRelationList;            public String getId() {                return id;            }            public void setId(String id) {                this.id = id;            }            public String getTitle() {                return title;            }            public void setTitle(String title) {                this.title = title;            }            public String getDetail() {                return detail;            }            public void setDetail(String detail) {                this.detail = detail;            }            public String getImage() {                return image;            }            public void setImage(String image) {                this.image = image;            }            public String getStart_time() {                return start_time;            }            public void setStart_time(String start_time) {                this.start_time = start_time;            }            public String getEnd_time() {                return end_time;            }            public void setEnd_time(String end_time) {                this.end_time = end_time;            }            public int getShow_number() {                return show_number;            }            public void setShow_number(int show_number) {                this.show_number = show_number;            }            public String getState() {                return state;            }            public void setState(String state) {                this.state = state;            }            public int getSort() {                return sort;            }            public void setSort(int sort) {                this.sort = sort;            }            public String getDescImage() {                return descImage;            }            public void setDescImage(String descImage) {                this.descImage = descImage;            }            public String getTemplate() {                return template;            }            public void setTemplate(String template) {                this.template = template;            }            public String getUrl() {                return url;            }            public void setUrl(String url) {                this.url = url;            }            public String getWapUrl() {                return wapUrl;            }            public void setWapUrl(String wapUrl) {                this.wapUrl = wapUrl;            }            public List<GoodsListBeanX> getGoodsList() {                return goodsList;            }            public void setGoodsList(List<GoodsListBeanX> goodsList) {                this.goodsList = goodsList;            }            public List<String> getGoodsIdsList() {                return goodsIdsList;            }            public void setGoodsIdsList(List<String> goodsIdsList) {                this.goodsIdsList = goodsIdsList;            }            public List<GoodsRelationListBean> getGoodsRelationList() {                return goodsRelationList;            }            public void setGoodsRelationList(List<GoodsRelationListBean> goodsRelationList) {                this.goodsRelationList = goodsRelationList;            }            public static class GoodsListBeanX {                /**                 * id : 492                 * goods_name : 盈透美肌黑膜套装(插画版)                 * shop_price : 99.9                 * market_price : 298.0                 * goods_img : https://image.yunifang.com/yunifang/images/goods/492/goods_img/171011191068814258195256706.jpg                 * reservable : false                 * efficacy : 以黑吸黑 润透亮颜                 * stock_number : 0                 * restrict_purchase_num : 0                 * goodsName : PG one热荐:★★★★★                 * goodsImage : https://image.yunifang.com/yunifang/images/goods/temp/171011192212214258195254179.jpg                 * description : 三重植物精粹,三重水润膜力,美时美刻,水润透亮~                 */                private String id;                private String goods_name;                private double shop_price;                private double market_price;                private String goods_img;                private boolean reservable;                private String efficacy;                private int stock_number;                private int restrict_purchase_num;                private String goodsName;                private String goodsImage;                private String description;                public String getId() {                    return id;                }                public void setId(String id) {                    this.id = id;                }                public String getGoods_name() {                    return goods_name;                }                public void setGoods_name(String goods_name) {                    this.goods_name = goods_name;                }                public double getShop_price() {                    return shop_price;                }                public void setShop_price(double shop_price) {                    this.shop_price = shop_price;                }                public double getMarket_price() {                    return market_price;                }                public void setMarket_price(double market_price) {                    this.market_price = market_price;                }                public String getGoods_img() {                    return goods_img;                }                public void setGoods_img(String goods_img) {                    this.goods_img = goods_img;                }                public boolean isReservable() {                    return reservable;                }                public void setReservable(boolean reservable) {                    this.reservable = reservable;                }                public String getEfficacy() {                    return efficacy;                }                public void setEfficacy(String efficacy) {                    this.efficacy = efficacy;                }                public int getStock_number() {                    return stock_number;                }                public void setStock_number(int stock_number) {                    this.stock_number = stock_number;                }                public int getRestrict_purchase_num() {                    return restrict_purchase_num;                }                public void setRestrict_purchase_num(int restrict_purchase_num) {                    this.restrict_purchase_num = restrict_purchase_num;                }                public String getGoodsName() {                    return goodsName;                }                public void setGoodsName(String goodsName) {                    this.goodsName = goodsName;                }                public String getGoodsImage() {                    return goodsImage;                }                public void setGoodsImage(String goodsImage) {                    this.goodsImage = goodsImage;                }                public String getDescription() {                    return description;                }                public void setDescription(String description) {                    this.description = description;                }            }            public static class GoodsRelationListBean {                /**                 * id : 14815                 * subject_id : 84                 * goods_id : 492                 * goodsName : PG one热荐:★★★★★                 * goodsImage : https://image.yunifang.com/yunifang/images/goods/temp/171011192212214258195254179.jpg                 * description : 三重植物精粹,三重水润膜力,美时美刻,水润透亮~                 */                private String id;                private String subject_id;                private String goods_id;                private String goodsName;                private String goodsImage;                private String description;                public String getId() {                    return id;                }                public void setId(String id) {                    this.id = id;                }                public String getSubject_id() {                    return subject_id;                }                public void setSubject_id(String subject_id) {                    this.subject_id = subject_id;                }                public String getGoods_id() {                    return goods_id;                }                public void setGoods_id(String goods_id) {                    this.goods_id = goods_id;                }                public String getGoodsName() {                    return goodsName;                }                public void setGoodsName(String goodsName) {                    this.goodsName = goodsName;                }                public String getGoodsImage() {                    return goodsImage;                }                public void setGoodsImage(String goodsImage) {                    this.goodsImage = goodsImage;                }                public String getDescription() {                    return description;                }                public void setDescription(String description) {                    this.description = description;                }            }        }        public static class Ad1Bean {            /**             * id : 1147             * createtime : 2017.10.09 08:33:42             * lastupdatetime : 2017.10.09 08:33:46             * image : https://image.yunifang.com/yunifang/images/goods/ad0/17100908319495742677657462.jpg             * ad_type : 0             * sort : 1414             * position : 0             * enabled : 1             * createuser : leiqi             * lastupdateuser : leiqi             * ad_type_dynamic : 1             * ad_type_dynamic_data : http://h.yunifang.com/h/comment.html             * ad_type_dynamic_detail : http%3A%2F%2Fh.yunifang.com%2Fh%2Fcomment.html             * title : 10月商品好评有礼             * channelType : 0             * show_channel : 1,2,3,4             */            private String id;            private String createtime;            private String lastupdatetime;            private String image;            private int ad_type;            private int sort;            private int position;            private int enabled;            private String createuser;            private String lastupdateuser;            private String ad_type_dynamic;            private String ad_type_dynamic_data;            private String ad_type_dynamic_detail;            private String title;            private String channelType;            private String show_channel;            public String getId() {                return id;            }            public void setId(String id) {                this.id = id;            }            public String getCreatetime() {                return createtime;            }            public void setCreatetime(String createtime) {                this.createtime = createtime;            }            public String getLastupdatetime() {                return lastupdatetime;            }            public void setLastupdatetime(String lastupdatetime) {                this.lastupdatetime = lastupdatetime;            }            public String getImage() {                return image;            }            public void setImage(String image) {                this.image = image;            }            public int getAd_type() {                return ad_type;            }            public void setAd_type(int ad_type) {                this.ad_type = ad_type;            }            public int getSort() {                return sort;            }            public void setSort(int sort) {                this.sort = sort;            }            public int getPosition() {                return position;            }            public void setPosition(int position) {                this.position = position;            }            public int getEnabled() {                return enabled;            }            public void setEnabled(int enabled) {                this.enabled = enabled;            }            public String getCreateuser() {                return createuser;            }            public void setCreateuser(String createuser) {                this.createuser = createuser;            }            public String getLastupdateuser() {                return lastupdateuser;            }            public void setLastupdateuser(String lastupdateuser) {                this.lastupdateuser = lastupdateuser;            }            public String getAd_type_dynamic() {                return ad_type_dynamic;            }            public void setAd_type_dynamic(String ad_type_dynamic) {                this.ad_type_dynamic = ad_type_dynamic;            }            public String getAd_type_dynamic_data() {                return ad_type_dynamic_data;            }            public void setAd_type_dynamic_data(String ad_type_dynamic_data) {                this.ad_type_dynamic_data = ad_type_dynamic_data;            }            public String getAd_type_dynamic_detail() {                return ad_type_dynamic_detail;            }            public void setAd_type_dynamic_detail(String ad_type_dynamic_detail) {                this.ad_type_dynamic_detail = ad_type_dynamic_detail;            }            public String getTitle() {                return title;            }            public void setTitle(String title) {                this.title = title;            }            public String getChannelType() {                return channelType;            }            public void setChannelType(String channelType) {                this.channelType = channelType;            }            public String getShow_channel() {                return show_channel;            }            public void setShow_channel(String show_channel) {                this.show_channel = show_channel;            }        }        public static class Ad5Bean {            /**             * id : 359             * image : https://image.yunifang.com/yunifang/images/goods/ad0/170516143575610973073847273.png             * ad_type : 4             * sort : 295             * position : 5             * enabled : 0             * ad_type_dynamic : 1             * ad_type_dynamic_data : http://h.yunifang.com/sign/sign.html?login_check=2             * ad_type_dynamic_detail : http%3A%2F%2Fh.yunifang.com%2Fsign%2Fsign.html%3Flogin_check%3D2             * show_channel : 1,2             * title : 每日签到             * url : http://mobile.hmeili.com/yunifang/web/member/gift             */            private String id;            private String image;            private int ad_type;            private int sort;            private int position;            private int enabled;            private String ad_type_dynamic;            private String ad_type_dynamic_data;            private String ad_type_dynamic_detail;            private String show_channel;            private String title;            private String url;            public String getId() {                return id;            }            public void setId(String id) {                this.id = id;            }            public String getImage() {                return image;            }            public void setImage(String image) {                this.image = image;            }            public int getAd_type() {                return ad_type;            }            public void setAd_type(int ad_type) {                this.ad_type = ad_type;            }            public int getSort() {                return sort;            }            public void setSort(int sort) {                this.sort = sort;            }            public int getPosition() {                return position;            }            public void setPosition(int position) {                this.position = position;            }            public int getEnabled() {                return enabled;            }            public void setEnabled(int enabled) {                this.enabled = enabled;            }            public String getAd_type_dynamic() {                return ad_type_dynamic;            }            public void setAd_type_dynamic(String ad_type_dynamic) {                this.ad_type_dynamic = ad_type_dynamic;            }            public String getAd_type_dynamic_data() {                return ad_type_dynamic_data;            }            public void setAd_type_dynamic_data(String ad_type_dynamic_data) {                this.ad_type_dynamic_data = ad_type_dynamic_data;            }            public String getAd_type_dynamic_detail() {                return ad_type_dynamic_detail;            }            public void setAd_type_dynamic_detail(String ad_type_dynamic_detail) {                this.ad_type_dynamic_detail = ad_type_dynamic_detail;            }            public String getShow_channel() {                return show_channel;            }            public void setShow_channel(String show_channel) {                this.show_channel = show_channel;            }            public String getTitle() {                return title;            }            public void setTitle(String title) {                this.title = title;            }            public String getUrl() {                return url;            }            public void setUrl(String url) {                this.url = url;            }        }        public static class Ad8Bean {            /**             * id : 1056             * image : https://image.yunifang.com/yunifang/images/goods/ad0/170719150582816742818457761.png             * ad_type : 0             * sort : 57             * position : 8             * enabled : 0             * description : 人气好物超值推荐             * ad_type_dynamic : 1             * ad_type_dynamic_data : http://vip.yunifang.com/goods/recommend.html?id=87             * ad_type_dynamic_detail : http%3A%2F%2Fh.yunifang.com%2Fgoods%2Frecommend.html%3Fid%3D87             * show_channel : 1,2,3,4             * title : 新鲜每一天             * goods : {"collect_count":0,"reservable":false,"restriction":0,"restrict_purchase_num":0,"is_coupon_allowed":false,"allocated_stock":0,"is_gift":0}             */            private String id;            private String image;            private int ad_type;            private int sort;            private int position;            private int enabled;            private String description;            private String ad_type_dynamic;            private String ad_type_dynamic_data;            private String ad_type_dynamic_detail;            private String show_channel;            private String title;            private GoodsBean goods;            public String getId() {                return id;            }            public void setId(String id) {                this.id = id;            }            public String getImage() {                return image;            }            public void setImage(String image) {                this.image = image;            }            public int getAd_type() {                return ad_type;            }            public void setAd_type(int ad_type) {                this.ad_type = ad_type;            }            public int getSort() {                return sort;            }            public void setSort(int sort) {                this.sort = sort;            }            public int getPosition() {                return position;            }            public void setPosition(int position) {                this.position = position;            }            public int getEnabled() {                return enabled;            }            public void setEnabled(int enabled) {                this.enabled = enabled;            }            public String getDescription() {                return description;            }            public void setDescription(String description) {                this.description = description;            }            public String getAd_type_dynamic() {                return ad_type_dynamic;            }            public void setAd_type_dynamic(String ad_type_dynamic) {                this.ad_type_dynamic = ad_type_dynamic;            }            public String getAd_type_dynamic_data() {                return ad_type_dynamic_data;            }            public void setAd_type_dynamic_data(String ad_type_dynamic_data) {                this.ad_type_dynamic_data = ad_type_dynamic_data;            }            public String getAd_type_dynamic_detail() {                return ad_type_dynamic_detail;            }            public void setAd_type_dynamic_detail(String ad_type_dynamic_detail) {                this.ad_type_dynamic_detail = ad_type_dynamic_detail;            }            public String getShow_channel() {                return show_channel;            }            public void setShow_channel(String show_channel) {                this.show_channel = show_channel;            }            public String getTitle() {                return title;            }            public void setTitle(String title) {                this.title = title;            }            public GoodsBean getGoods() {                return goods;            }            public void setGoods(GoodsBean goods) {                this.goods = goods;            }            public static class GoodsBean {                /**                 * collect_count : 0                 * reservable : false                 * restriction : 0                 * restrict_purchase_num : 0                 * is_coupon_allowed : false                 * allocated_stock : 0                 * is_gift : 0                 */                private int collect_count;                private boolean reservable;                private int restriction;                private int restrict_purchase_num;                private boolean is_coupon_allowed;                private int allocated_stock;                private int is_gift;                public int getCollect_count() {                    return collect_count;                }                public void setCollect_count(int collect_count) {                    this.collect_count = collect_count;                }                public boolean isReservable() {                    return reservable;                }                public void setReservable(boolean reservable) {                    this.reservable = reservable;                }                public int getRestriction() {                    return restriction;                }                public void setRestriction(int restriction) {                    this.restriction = restriction;                }                public int getRestrict_purchase_num() {                    return restrict_purchase_num;                }                public void setRestrict_purchase_num(int restrict_purchase_num) {                    this.restrict_purchase_num = restrict_purchase_num;                }                public boolean isIs_coupon_allowed() {                    return is_coupon_allowed;                }                public void setIs_coupon_allowed(boolean is_coupon_allowed) {                    this.is_coupon_allowed = is_coupon_allowed;                }                public int getAllocated_stock() {                    return allocated_stock;                }                public void setAllocated_stock(int allocated_stock) {                    this.allocated_stock = allocated_stock;                }                public int getIs_gift() {                    return is_gift;                }                public void setIs_gift(int is_gift) {                    this.is_gift = is_gift;                }            }        }        public static class DefaultGoodsListBean {            /**             * id : 121             * goods_name : 镇店之宝丨美白嫩肤面膜7             * shop_price : 49.9             * market_price : 99.0             * goods_img : https://image.yunifang.com/yunifang/images/goods/121/goods_img/17062610568378169043195978.jpg             * reservable : false             * efficacy : 镇店之宝 美白爆款             * stock_number : 0             * restrict_purchase_num : 0             */            private String id;            private String goods_name;            private double shop_price;            private double market_price;            private String goods_img;            private boolean reservable;            private String efficacy;            private int stock_number;            private int restrict_purchase_num;            public String getId() {                return id;            }            public void setId(String id) {                this.id = id;            }            public String getGoods_name() {                return goods_name;            }            public void setGoods_name(String goods_name) {                this.goods_name = goods_name;            }            public double getShop_price() {                return shop_price;            }            public void setShop_price(double shop_price) {                this.shop_price = shop_price;            }            public double getMarket_price() {                return market_price;            }            public void setMarket_price(double market_price) {                this.market_price = market_price;            }            public String getGoods_img() {                return goods_img;            }            public void setGoods_img(String goods_img) {                this.goods_img = goods_img;            }            public boolean isReservable() {                return reservable;            }            public void setReservable(boolean reservable) {                this.reservable = reservable;            }            public String getEfficacy() {                return efficacy;            }            public void setEfficacy(String efficacy) {                this.efficacy = efficacy;            }            public int getStock_number() {                return stock_number;            }            public void setStock_number(int stock_number) {                this.stock_number = stock_number;            }            public int getRestrict_purchase_num() {                return restrict_purchase_num;            }            public void setRestrict_purchase_num(int restrict_purchase_num) {                this.restrict_purchase_num = restrict_purchase_num;            }        }    }}

ShopCarBean

package wangbo.bawei.com.my20171220gou.bean;import java.util.List;/** * Created by 杨文倩 on 2017/12/11. */public class ShopCarBean { /** * msg : 请求成功 * code : 0 * data : [{"list":[{"bargainPrice":22.9,"createtime":"2017-10-14T21:48:08","detailUrl":"https://item.m.jd.com/product/2542855.html?utm_source=androidapp&utm_medium=appshare&utm_campaign=t_335139774&utm_term=QQfriends","images":"https://m.360buyimg.com/n0/jfs/t1930/284/2865629620/390243/e3ade9c4/56f0a08fNbd3a1235.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t2137/336/2802996626/155915/e5e90d7a/56f0a09cN33e01bd0.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t1882/31/2772215910/389956/c8dbf370/56f0a0a2Na0c86ea6.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t2620/166/2703833710/312660/531aa913/57709035N33857877.jpg!q70.jpg","num":2,"pid":24,"price":288,"pscid":2,"selected":0,"sellerid":1,"subhead":"三只松鼠零食特惠,专区满9950,满199100,火速抢购》","title":"三只松鼠 坚果炒货 零食奶油味 碧根果225g/"}],"sellerName":"商家1","sellerid":"1"},{"list":[{"bargainPrice":11800,"createtime":"2017-10-14T21:38:26","detailUrl":"https://item.m.jd.com/product/5025518.html?utm#_source=androidapp&utm#_medium=appshare&utm#_campaign=t#_335139774&utm#_term=QQfriends","images":"https://m.360buyimg.com/n0/jfs/t8830/106/1760940277/195595/5cf9412f/59bf2ef5N5ab7dc16.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t5428/70/1520969931/274676/b644dd0d/591128e7Nd2f70da0.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t5566/365/1519564203/36911/620c750c/591128eaN54ac3363.jpg!q70.jpg","num":1,"pid":58,"price":6399,"pscid":40,"selected":0,"sellerid":2,"subhead":"升级4G大显存!Nvme协议Pcie SSD,速度快人一步】GTX1050Ti就选拯救者!专业游戏键盘&新模具全新设计!","title":"联想(Lenovo)拯救者R720 15.6英寸游戏笔记本电脑(i5-7300HQ 8G 1T+128G SSD GTX1050Ti 4G IPS )"},{"bargainPrice":6666,"createtime":"2017-10-10T16:01:31","detailUrl":"https://item.m.jd.com/product/5089273.html?utm#_source=androidapp&utm#_medium=appshare&utm#_campaign=t#_335139774&utm#_term=QQfriends","images":"https://m.360buyimg.com/n0/jfs/t8284/363/1326459580/71585/6d3e8013/59b857f2N6ca75622.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t9346/182/1406837243/282106/68af5b54/59b8480aNe8af7f5c.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t8434/54/1359766007/56140/579509d9/59b85801Nfea207db.jpg!q70.jpg","num":1,"pid":46,"price":234,"pscid":39,"selected":0,"sellerid":2,"subhead":"iPhone新品上市】新一代iPhone,让智能看起来更不一样","title":"Apple iPhone 8 Plus (A1864) 64GB 金色 移动联通电信4G手机"}],"sellerName":"商家2","sellerid":"2"},{"list":[{"bargainPrice":111.99,"createtime":"2017-10-14T21:39:05","detailUrl":"https://item.m.jd.com/product/4719303.html?utm_source=androidapp&utm_medium=appshare&utm_campaign=t_335139774&utm_term=QQfriends","images":"https://m.360buyimg.com/n0/jfs/t9004/210/1160833155/647627/ad6be059/59b4f4e1N9a2b1532.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t7504/338/63721388/491286/f5957f53/598e95f1N7f2adb87.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t7441/10/64242474/419246/adb30a7d/598e95fbNd989ba0a.jpg!q70.jpg","num":85,"pid":10,"price":555.55,"pscid":1,"selected":0,"sellerid":3,"subhead":"每个中秋都不能简单,无论身在何处,你总需要一块饼让生活更圆满,京东月饼让爱更圆满京东自营,闪电配送,更多惊喜,快用手指戳一下","title":"北京稻香村 稻香村中秋节月饼 老北京月饼礼盒655g"}],"sellerName":"商家3","sellerid":"3"},{"list":[{"bargainPrice":11800,"createtime":"2017-10-14T21:38:26","detailUrl":"https://mitem.jd.hk/ware/view.action?wareId=1988853309&cachekey=1acb07a701ece8d2434a6ae7fa6870a1","images":"https://m.360buyimg.com/n0/jfs/t6130/97/1370670410/180682/1109582a/593276b1Nd81fe723.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t5698/110/2617517836/202970/c9388feb/593276b7Nbd94ef1f.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t5698/110/2617517836/202970/c9388feb/593276b7Nbd94ef1f.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t5815/178/2614671118/51656/7f52d137/593276c7N107b725a.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t5878/60/2557817477/30873/4502b606/593276caN5a7d6357.jpg!q70.jpg","num":1,"pid":61,"price":14999,"pscid":40,"selected":0,"sellerid":5,"subhead":"购买电脑办公部分商品满1元返火车票5元优惠券(返完即止)","title":"全球购 新款Apple MacBook Pro 苹果笔记本电脑 银色VP213英寸Bar i5/8G/256G"}],"sellerName":"商家5","sellerid":"5"},{"list":[{"bargainPrice":159,"createtime":"2017-10-14T21:49:15","detailUrl":"https://item.m.jd.com/product/5061723.html?utm_source=androidapp&utm_medium=appshare&utm_campaign=t_335139774&utm_term=QQfriends","images":"https://m.360buyimg.com/n0/jfs/t8716/197/1271594444/173291/2f40bb4f/59b743bcN8509428e.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t8347/264/1286771527/92188/5cf5ec04/59b7420fN65378e9e.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t7363/165/3000956253/190883/179a372/59b743bfNd0c79d93.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t7399/112/2935531768/183594/b77c7d4a/59b7441aNc3d40133.jpg!q70.jpg","num":1,"pid":100,"price":2200,"pscid":112,"selected":0,"sellerid":11,"subhead":"针织针织闪闪闪亮你的眼","title":"维迩旎 2017秋冬新款长袖针织连衣裙韩版气质中长款名媛包臀A字裙 zx179709 黑色 XL"}],"sellerName":"商家11","sellerid":"11"},{"list":[{"bargainPrice":11800,"createtime":"2017-10-14T21:38:26","detailUrl":"https://mitem.jd.hk/ware/view.action?wareId=1988853309&cachekey=1acb07a701ece8d2434a6ae7fa6870a1","images":"https://m.360buyimg.com/n0/jfs/t6130/97/1370670410/180682/1109582a/593276b1Nd81fe723.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t5698/110/2617517836/202970/c9388feb/593276b7Nbd94ef1f.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t5698/110/2617517836/202970/c9388feb/593276b7Nbd94ef1f.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t5815/178/2614671118/51656/7f52d137/593276c7N107b725a.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t5878/60/2557817477/30873/4502b606/593276caN5a7d6357.jpg!q70.jpg","num":1,"pid":69,"price":16999,"pscid":40,"selected":0,"sellerid":13,"subhead":"购买电脑办公部分商品满1元返火车票5元优惠券(返完即止)","title":"全球购 新款Apple MacBook Pro 苹果笔记本电脑 银色VP213英寸Bar i5/8G/256G"}],"sellerName":"商家13","sellerid":"13"}] */private String msg;    private String code;    private List<DataBean> data;    public String getMsg() {        return msg;    }    public void setMsg(String msg) {        this.msg = msg;    }    public String getCode() {        return code;    }    public void setCode(String code) {        this.code = code;    }    public List<DataBean> getData() {        return data;    }    public void setData(List<DataBean> data) {        this.data = data;    }    @Override    public String toString() {        return "ShopCar{" +                "msg='" + msg + '\'' +                ", code='" + code + '\'' +                ", data=" + data +                '}';    }    public static class DataBean {        /**         * list : [{"bargainPrice":22.9,"createtime":"2017-10-14T21:48:08","detailUrl":"https://item.m.jd.com/product/2542855.html?utm_source=androidapp&utm_medium=appshare&utm_campaign=t_335139774&utm_term=QQfriends","images":"https://m.360buyimg.com/n0/jfs/t1930/284/2865629620/390243/e3ade9c4/56f0a08fNbd3a1235.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t2137/336/2802996626/155915/e5e90d7a/56f0a09cN33e01bd0.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t1882/31/2772215910/389956/c8dbf370/56f0a0a2Na0c86ea6.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t2620/166/2703833710/312660/531aa913/57709035N33857877.jpg!q70.jpg","num":2,"pid":24,"price":288,"pscid":2,"selected":0,"sellerid":1,"subhead":"三只松鼠零食特惠,专区满9950,满199100,火速抢购》","title":"三只松鼠 坚果炒货 零食奶油味 碧根果225g/"}]         * sellerName : 商家1         * sellerid : 1         */        private String sellerName;        private String sellerid;        private List<ListBean> list;        public String getSellerName() {            return sellerName;        }        public void setSellerName(String sellerName) {            this.sellerName = sellerName;        }        public String getSellerid() {            return sellerid;        }        public void setSellerid(String sellerid) {            this.sellerid = sellerid;        }        public List<ListBean> getList() {            return list;        }        public void setList(List<ListBean> list) {            this.list = list;        }        @Override        public String toString() {            return "DataBean{" +                    "sellerName='" + sellerName + '\'' +                    ", sellerid='" + sellerid + '\'' +                    ", list=" + list +                    '}';        }        public static class ListBean {            /**             * bargainPrice : 22.9             * createtime : 2017-10-14T21:48:08             * detailUrl : https://item.m.jd.com/product/2542855.html?utm_source=androidapp&utm_medium=appshare&utm_campaign=t_335139774&utm_term=QQfriends             * images : https://m.360buyimg.com/n0/jfs/t1930/284/2865629620/390243/e3ade9c4/56f0a08fNbd3a1235.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t2137/336/2802996626/155915/e5e90d7a/56f0a09cN33e01bd0.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t1882/31/2772215910/389956/c8dbf370/56f0a0a2Na0c86ea6.jpg!q70.jpg|https://m.360buyimg.com/n0/jfs/t2620/166/2703833710/312660/531aa913/57709035N33857877.jpg!q70.jpg             * num : 2             * pid : 24             * price : 288.0             * pscid : 2             * selected : 0             * sellerid : 1             * subhead : 三只松鼠零食特惠,专区满9950,满199100,火速抢购》             * title : 三只松鼠 坚果炒货 零食奶油味 碧根果225g/             */            private double bargainPrice;            private String createtime;            private String detailUrl;            private String images;            private int num;            private int pid;            private double price;            private int pscid;            private int selected;            private int sellerid;            private String subhead;            private String title;            public double getBargainPrice() {                return bargainPrice;            }            public void setBargainPrice(double bargainPrice) {                this.bargainPrice = bargainPrice;            }            public String getCreatetime() {                return createtime;            }            public void setCreatetime(String createtime) {                this.createtime = createtime;            }            public String getDetailUrl() {                return detailUrl;            }            public void setDetailUrl(String detailUrl) {                this.detailUrl = detailUrl;            }            public String getImages() {                return images;            }            public void setImages(String images) {                this.images = images;            }            public int getNum() {                return num;            }            public void setNum(int num) {                this.num = num;            }            public int getPid() {                return pid;            }            public void setPid(int pid) {                this.pid = pid;            }            public double getPrice() {                return price;            }            public void setPrice(double price) {                this.price = price;            }            public int getPscid() {                return pscid;            }            public void setPscid(int pscid) {                this.pscid = pscid;            }            public int getSelected() {                return selected;            }            public void setSelected(int selected) {                this.selected = selected;            }            public int getSellerid() {                return sellerid;            }            public void setSellerid(int sellerid) {                this.sellerid = sellerid;            }            public String getSubhead() {                return subhead;            }            public void setSubhead(String subhead) {                this.subhead = subhead;            }            public String getTitle() {                return title;            }            public void setTitle(String title) {                this.title = title;            }            @Override            public String toString() {                return "ListBean{" +                        "bargainPrice=" + bargainPrice +                        ", createtime='" + createtime + '\'' +                        ", detailUrl='" + detailUrl + '\'' +                        ", images='" + images + '\'' +                        ", num=" + num +                        ", pid=" + pid +                        ", price=" + price +                        ", pscid=" + pscid +                        ", selected=" + selected +                        ", sellerid=" + sellerid +                        ", subhead='" + subhead + '\'' +                        ", title='" + title + '\'' +                        '}';            }        }    }}

CallBack包

CallBack接口

package wangbo.bawei.com.my20171220gou.callback;/** * Created by 杨文倩 on 2017/12/11. */public interface CallBack {    void onSuccess(String tag, Object o);    void onFailed(String tag, Exception e);}

Presenter层

Logger

package wangbo.bawei.com.my20171220gou.presenter;import java.io.IOException;import okhttp3.HttpUrl;import okhttp3.Interceptor;import okhttp3.Request;import okhttp3.Response;/** * Created by 杨文倩 on 2017/12/11. */public class Logger implements Interceptor {    @Override    public Response intercept(Chain chain) throws IOException {        Request original = chain.request();        HttpUrl url=original.url().newBuilder()                //需要自己添加 俩参数看拦截器                .addQueryParameter("source","android")                .build();        //添加请求头        Request request = original.newBuilder()                .url(url)                .build();        return chain.proceed(request);    }}

Presenter

package wangbo.bawei.com.my20171220gou.presenter;import java.util.Map;import wangbo.bawei.com.my20171220gou.callback.CallBack;import wangbo.bawei.com.my20171220gou.utils.HttpUtils;import wangbo.bawei.com.my20171220gou.view.ImView;/** * Created by 杨文倩 on 2017/12/11. */public class Presenter {    private ImView inv;    public void attachView(ImView inv){        this.inv=inv;    }    public void get(String url, Map<String,String> map, String tag, Class clv){        HttpUtils.getInstance().get(url, map, new CallBack() {            @Override            public void onSuccess(String tag, Object o) {                if(o!=null){                    inv.onSuccess(tag,o);                }            }            @Override            public void onFailed(String tag, Exception e) {                inv.onFailed(tag,e);            }        },clv,tag);    }    //创建对象方便 v层进行释放    public void deleteView(){        if(inv!=null){            inv=null;        }    }   /* //销毁线程 资源释放 在Activity 主类    @Override    protected void onDestroy() {        super.onDestroy();        if (presenter != null) {            presenter.deleteView();        }    }*/}

Utils包

Gsonutils

package wangbo.bawei.com.my20171220gou.utils;import com.google.gson.Gson;/** * Created by 杨文倩 on 2017/12/11. */public class GsonUtils {    private static Gson gson;    public static Gson getInstance(){        if(gson==null){            gson=new Gson();        }        return gson;    }}

HttpUtils

package wangbo.bawei.com.my20171220gou.utils;import android.os.Handler;import android.text.TextUtils;import android.util.Log;import java.io.IOException;import java.util.Map;import okhttp3.Call;import okhttp3.Callback;import okhttp3.OkHttpClient;import okhttp3.Request;import okhttp3.Response;import wangbo.bawei.com.my20171220gou.callback.CallBack;/** * Created by 杨文倩 on 2017/12/11. */public class HttpUtils {    private static final String TAG = "HttpUtils";    private static volatile HttpUtils instance;    Handler handler=new Handler();    public HttpUtils() {    }    public static HttpUtils getInstance(){        if(null==instance){            synchronized (HttpUtils.class){                if(instance==null){                    instance = new HttpUtils();                }            }        }        return instance;    }    public void get(String url, Map<String,String> map, final CallBack callBack, final Class cla, final String tag){        if(TextUtils.isEmpty(url)){            return;        }        StringBuffer sb=new StringBuffer();        sb.append(url);        if(!map.isEmpty()){            Log.i(TAG, "get: url="+"开始拼接+++++++++++++++++");            if(url.contains("?")){                if(url.indexOf("?")==url.length()-1){                }else {                    sb.append("&");                }            }else {                sb.append("?");            }            for (Map.Entry<String,String> entry:map.entrySet()){                sb.append(entry.getKey())                        .append("=")                        .append(entry.getValue())                        .append("&");            }            if(sb.indexOf("&")!=-1){                sb.deleteCharAt(sb.lastIndexOf("&"));            }        }        Log.i(TAG, "get: url="+sb);        OkHttpClient client=new OkHttpClient.Builder().                addInterceptor(new wangbo.bawei.com.my20171220gou.presenter.Logger()).build();        final Request request=new Request.Builder()                .get()                .url(sb.toString())                .build();        Call call = client.newCall(request);        call.enqueue(new Callback() {            @Override            public void onFailure(Call call, final IOException e) {                handler.post(new Runnable() {                    @Override                    public void run() {                        callBack.onFailed(tag,e);                    }                });            }            @Override            public void onResponse(Call call, Response response) throws IOException {                final String result = response.body().string();                Log.e(TAG, "onResponse: result--"+result);                handler.post(new Runnable() {                    @Override                    public void run() {                        Object o;                        if (TextUtils.isEmpty(result)) {                            o = null;                        } else {                            o = GsonUtils.getInstance().fromJson(result, cla);                        }                        //Log.e(TAG, "onResponse: bean--"+);                        callBack.onSuccess(tag, o);                    }                });            }        });    }}

View层

AddDeleteView

package wangbo.bawei.com.my20171220gou.view;import android.content.Context;import android.content.res.TypedArray;import android.graphics.Color;import android.util.AttributeSet;import android.view.View;import android.widget.EditText;import android.widget.LinearLayout;import android.widget.TextView;import wangbo.bawei.com.my20171220gou.R;/** * Created by 杨文倩 on 2017/12/11. */public class AddDeleteView extends LinearLayout {    private OnAddDelClickListener listener;    private EditText etNumber;    //对外提供一个点击的回调接口    public interface OnAddDelClickListener{        void onAddClick(View v);        void onDelClick(View v);    }    public void setOnAddDelClickListener(OnAddDelClickListener listener){        if(listener!=null){            this.listener=listener;        }    }    public AddDeleteView(Context context) {        this(context,null);    }    public AddDeleteView(Context context, AttributeSet attrs) {        this(context, attrs,0);    }    public AddDeleteView(Context context, AttributeSet attrs, int defStyleAttr) {        super(context, attrs, defStyleAttr);        initView(context, attrs, defStyleAttr);    }    private void initView(Context context, AttributeSet attrs, int defStyleAttr) {        View.inflate(context, R.layout.layout_add_delete,this);        //获取控件        TextView txtDelete= (TextView) findViewById(R.id.txt_delete);        TextView txtAdd= (TextView) findViewById(R.id.txt_add);        etNumber = (EditText) findViewById(R.id.et_number);        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.AddDeleteViewStyle);        String leftText = typedArray.getString(R.styleable.AddDeleteViewStyle_left_text);        String rightText = typedArray.getString(R.styleable.AddDeleteViewStyle_right_text);        String middleText = typedArray.getString(R.styleable.AddDeleteViewStyle_middle_text);        int color = typedArray.getColor(R.styleable.AddDeleteViewStyle_left_text_color, Color.BLACK);        txtDelete.setText(leftText);        txtAdd.setText(rightText);        etNumber.setText(middleText);        txtDelete.setTextColor(color);        //回收        typedArray.recycle();        txtDelete.setOnClickListener(new OnClickListener() {            @Override            public void onClick(View view) {                listener.onDelClick(view);            }        });        txtAdd.setOnClickListener(new OnClickListener() {            @Override            public void onClick(View view) {                listener.onAddClick(view);            }        });    }    //对外提供一个修改数字的方法    public void setNumber(int number){        if(number>0){            etNumber.setText(number+"");        }    }    //对外提供一个获取当前数字的方法    public int getNumber(){        String string = etNumber.getText().toString();        int i = Integer.parseInt(string);        return i;    }}

ImView接口

package wangbo.bawei.com.my20171220gou.view;/** * Created by 杨文倩 on 2017/12/11. */public interface ImView {    void onSuccess(String tag, Object o);    void onFailed(String tag, Exception e);}

阅读全文
0 0