@Data
This commit is contained in:
parent
ad48813a8d
commit
48594250e3
|
@ -1,5 +1,7 @@
|
||||||
package com.example.catchTheLetters.entity;
|
package com.example.catchTheLetters.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -7,6 +9,7 @@ import java.util.List;
|
||||||
* 关卡类
|
* 关卡类
|
||||||
* @author spyn
|
* @author spyn
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class Level implements Serializable {
|
public class Level implements Serializable {
|
||||||
/**
|
/**
|
||||||
* 关卡ID
|
* 关卡ID
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
package com.example.catchTheLetters.entity;
|
package com.example.catchTheLetters.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 关卡结算信息类
|
* 关卡结算信息类
|
||||||
* @author spyn
|
* @author spyn
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
public class ScoreInfo implements Serializable {
|
public class ScoreInfo implements Serializable {
|
||||||
/**
|
/**
|
||||||
* 用户ID
|
* 用户ID
|
||||||
|
|
Loading…
Reference in New Issue