gongchunyi
9 小时以前 14999b3d001b6eff1220f7a6701c0796eee1089c
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
30
31
32
33
34
35
package com.ruoyi.production.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * <br>
 * 工序参数排序 DTO
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/14 14:25
 */
@Data
@ApiModel("工序参数排序入参")
public class ProductProcessParamSortDTO {
 
    @ApiModelProperty("排序项列表")
    private List<SortItem> items;
 
    @Data
    @ApiModel("排序项")
    public static class SortItem {
 
        @ApiModelProperty("记录ID")
        private Long id;
 
        @ApiModelProperty("排序号")
        private Integer sort;
    }
}