吉安感知网项目-后端
rain
2026-02-09 66bfbdb9251c22ffa2b5f05595a76a3547a2f5eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.sxkj.gd.workorder.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class GdXingtuPayloadListDTO {
 
    @ApiModelProperty("id")
    private String id;
 
    @ApiModelProperty("负载名称")
    private String name;
 
    @ApiModelProperty("负载类型")
    private String type;
 
    @ApiModelProperty("负载序列号")
    private String snCode;
 
    @ApiModelProperty("设备序列号")
    private String pilotSnCode;
}