LastTrend.java 676 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
package com.yidianling.dynamic.model;


import java.util.List;


/**
 * 最新动态
 * Created by xiongyu on 2017/4/13.
 */

public class LastTrend {
    private  String layout_type;//布局类型
    private Object mDatas;

    public LastTrend(String layout_type, Object mDatas) {
        this.layout_type = layout_type;
        this.mDatas = mDatas;
    }



    public String getLayout_type() {
        return layout_type;
    }

    public void setLayout_type(String layout_type) {
        this.layout_type = layout_type;
    }

    public Object getmDatas() {
        return mDatas;
    }

    public void setmDatas(List mDatas) {
        this.mDatas = mDatas;
    }
}