1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| package com.mes.damage.entity.dto;
|
| import com.mes.damage.entity.Damage;
| import lombok.Data;
| import lombok.EqualsAndHashCode;
|
| /**
| * <p>
| *
| * </p>
| *
| * @author wu
| * @since 2024-06-25
| */
| @Data
| @EqualsAndHashCode(callSuper = false)
| public class DamageDTO extends Damage {
|
| /**
| * 宽
| */
| private Integer width;
|
| /**
| * 宽
| */
| private Integer height;
|
| }
|
|