You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
655 B
27 lines
655 B
package com.example.demo.domain.vo;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName Gold
|
|
* @description: 金币信息
|
|
* @author: Double
|
|
* @create: 2025−06-23 15:53
|
|
* @Version 1.0
|
|
**/
|
|
|
|
@Data
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class Gold implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
private Integer totalNum; //总条数
|
|
private Integer permanentGolds; // 永久金币总数
|
|
private Integer freeGolds; // 免费金币总数
|
|
private Integer taskGolds; // 任务金币总数
|
|
}
|