mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-12 01:51:02 +08:00
13 lines
207 B
Java
13 lines
207 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
/** Point mall good info. */
|
|
@Data
|
|
public class PointGoodDto {
|
|
private Long id;
|
|
private String name;
|
|
private int cost;
|
|
private String image;
|
|
}
|