2025-10-20 10:16:44 +08:00
|
|
|
|
package com.xscm.moduleutil.bean;
|
|
|
|
|
|
|
2025-11-21 18:54:40 +08:00
|
|
|
|
import com.chad.library.adapter.base.entity.MultiItemEntity;
|
|
|
|
|
|
|
2025-10-20 10:16:44 +08:00
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @author qx
|
|
|
|
|
|
* @data 2025/6/16
|
|
|
|
|
|
* @description: 关系信息
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Data
|
2025-11-21 18:54:40 +08:00
|
|
|
|
public class RelationshipBean implements Serializable, MultiItemEntity {
|
2025-10-20 10:16:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private int relation_id;//关系id 3,
|
|
|
|
|
|
private int id;// 39,
|
|
|
|
|
|
private int user_id1;// 31,
|
|
|
|
|
|
private int user_id2;// 12,
|
|
|
|
|
|
private String updatetime;// " 1754038468,
|
|
|
|
|
|
private String time_day;// " 2025-: 54000,
|
|
|
|
|
|
private String end_time;// 1754092468,
|
|
|
|
|
|
private String nickname1;// "坦率的摩托",
|
|
|
|
|
|
private String avatar1;// "https://qx-yusheng.oss-cn-hangzhou.aliyuncs.com/img/53a7320dbf4ed24c204291b1cb3f07f7.jpg",
|
|
|
|
|
|
private String cp_room_id;// null,
|
|
|
|
|
|
private String nickname2;// "暴躁的金针菇",
|
|
|
|
|
|
private String avatar2;//https://qx-yusheng.oss-cn-hangzhou.aliyuncs.com/audio/4354fff51c3ff20c8ffdcfb7fe55d843.jpg",
|
|
|
|
|
|
private String relation_name;// ": "闺蜜1",
|
|
|
|
|
|
private String image;// "http://111111111",
|
|
|
|
|
|
private String delete_me_coin;// " "100",
|
|
|
|
|
|
private int heart_value;// 0,
|
|
|
|
|
|
private int is_top;// 0
|
|
|
|
|
|
private int type;// 1,亲密;2:真爱
|
2025-11-21 18:54:40 +08:00
|
|
|
|
private int sex1;//1:女 2:男
|
|
|
|
|
|
private int sex2;//
|
2025-11-22 09:23:32 +08:00
|
|
|
|
private String dress1;//
|
|
|
|
|
|
private String dress2;//
|
|
|
|
|
|
|
2025-11-21 18:54:40 +08:00
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
public int getItemType() {
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
2025-10-20 10:16:44 +08:00
|
|
|
|
}
|