1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.zy.asrs.domain.dto;
|
| import com.zy.asrs.entity.WrkMast;
| import com.zy.core.model.command.LedCommand;
| import lombok.Data;
|
| import java.util.ArrayList;
| import java.util.List;
|
| @Data
| public class LedDTO {
|
| // 命令集合
| List<LedCommand> commands = new ArrayList<>();
| // 工作档集合
| List<WrkMast> wrkMasts = new ArrayList<>();
| }
|
|