mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-13 18:40:58 +08:00
14 lines
200 B
Java
14 lines
200 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;
|
|
}
|