Initial commit

This commit is contained in:
2026-04-23 16:58:11 +08:00
commit 267eba1eca
2582 changed files with 273338 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
package com.ruoyi.domain.vo;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class TtBoxOrnamentsDataVO {
private Integer id;
private Integer boxId;
private Long ornamentId;
private String imageUrl;
private String itemName;
private String name;
private BigDecimal usePrice;
private Integer ornamentsLevelId;
// 等级图片 背景
private String levelImg;
private String level;
private Integer odds;
private String oddsPercentum;
private Integer realOdds;
private String realOddsPercentum;
private Integer realRemainingOdds;
private Integer anchorOdds;
private String anchorOddsPercentum;
private Integer robotOdds;
private String robotOddsPercentum;
private Integer compOdds;
private Integer realCompOdds;
private String remark;
private Integer thirdExplosiveOdds;
private String thirdExplosiveOddsPercentum;
}