27 lines
648 B
Java
27 lines
648 B
Java
|
|
package com.xscm.moduleutil.bean;
|
||
|
|
|
||
|
|
import com.chad.library.adapter.base.entity.MultiItemEntity;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class HomeBean implements MultiItemEntity {
|
||
|
|
private int itemViewType = 2;
|
||
|
|
private String user_id;
|
||
|
|
private String head_picture;
|
||
|
|
private String nickname;
|
||
|
|
private String sex;
|
||
|
|
private String signature;
|
||
|
|
private String constellation;
|
||
|
|
private String birthday;
|
||
|
|
private String intro_voice;
|
||
|
|
private String intro_voice_time;
|
||
|
|
private String offline_time;
|
||
|
|
private int age;
|
||
|
|
private int is_online;
|
||
|
|
@Override
|
||
|
|
public int getItemType() {
|
||
|
|
return itemViewType;
|
||
|
|
}
|
||
|
|
}
|