Initial commit
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
package com.ruoyi.domain.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class TtRollJackpotOrnamentsDataVO {
|
||||
|
||||
private Integer id;
|
||||
|
||||
private Integer ornamentsId;
|
||||
|
||||
private Integer ornamentsNum;
|
||||
|
||||
private String itemName;
|
||||
|
||||
private String shortName;
|
||||
|
||||
private BigDecimal usePrice;
|
||||
|
||||
private String imageUrl;
|
||||
|
||||
private String ornamentLevelId;
|
||||
|
||||
private String level;
|
||||
|
||||
private String levelImg;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date createTime;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date updateTime;
|
||||
}
|
||||
Reference in New Issue
Block a user