1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.mes.order.entity.dto;
|
| import lombok.Data;
|
| /**
| * @Author : zhoush
| * @Date: 2025/11/25 8:35
| * @Description:
| */
| @Data
| public class InterlayerDTO {
|
|
| /**
| * 夹层第一层
| */
| private Integer prevSort;
|
|
| /**
| * 夹层第二层
| */
| private Integer nextSort;
| }
|
|