个性装扮展示完成

This commit is contained in:
2025-06-09 09:14:47 +08:00
parent 53ade75f84
commit aa865a69b3
10 changed files with 824 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.qxcm.moduleutil.bean;
import lombok.Data;
/**
*@author qx
*@data 2025/6/7
*@description: 装扮类型表
*/
@Data
public class PersonaltyBean {
private String id;
private String name;
}

View File

@@ -0,0 +1,39 @@
package com.qxcm.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;
}
}