/**
* Copyright 2016 JustWayward Team
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.justwayward.reader.bean;
import com.justwayward.reader.bean.base.Base;
import java.util.List;
/**
* Created by lfh on 2016/8/15.
*/
public class RankingList extends Base {
/**
* female : [{"_id":"54d43437d47d13ff21cad58b","title":"追书最热榜 Top100",
* "cover":"/ranking-cover/142319314350435","collapse":false,
* "monthRank":"564d853484665f97662d0810","totalRank":"564d85b6dd2bd1ec660ea8e2"}]
* ok : true
*/
public List<MaleBean> female;
/**
* _id : 54d42d92321052167dfb75e3
* title : 追书最热榜 Top100
* cover : /ranking-cover/142319144267827
* collapse : false
* monthRank : 564d820bc319238a644fb408
* totalRank : 564d8494fe996c25652644d2
*/
public List<MaleBean> male;
public static class MaleBean {
public String _id;
public String title;
public String cover;
public boolean collapse;
public String monthRank;
public String totalRank;
public MaleBean() {
}
public MaleBean(String title) {
this.title = title;
}
}
}