mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-13 02:20:56 +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;
|
|
}
|