修改交友布局

This commit is contained in:
2025-08-26 19:34:44 +08:00
commit 8eb8ac5397
3152 changed files with 1442170 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
package com.xscm.moduleutil.bean;
/**
*@author qx
*@data 2025/6/7
*@description:
*/
public class SvgaModel {
public static final int TYPE_GIFT = 0;
public static final int TYPE_JUE = 1;
public static final int TYPE_JUE_AND_APPROACH = 2;
public static final int TYPE_APPROACH = 3;
public String url;
public int type;
public String approachUrl;
public String userName;
public String nobilityName;
public SvgaModel() {
}
public SvgaModel(String url) {
this.type=TYPE_GIFT;
this.url = url;
}
public SvgaModel(String url, int type) {
this.url = url;
this.type = type;
}
public SvgaModel(String url, int type, String approachUrl, String userName, String nobilityName) {
this.url = url;
this.type = type;
this.approachUrl = approachUrl;
this.userName = userName;
this.nobilityName=nobilityName;
}
}