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
| package cn.iocoder.yudao.module.mes.api.cal.dto;
|
| import lombok.Data;
|
| /**
| * MES 班组 Response DTO
| *
| * @author 超级管理员
| */
| @Data
| public class MesCalTeamRespDTO {
|
| /**
| * 班组编号
| */
| private Long id;
|
| /**
| * 班组编码
| */
| private String code;
|
| /**
| * 班组名称
| */
| private String name;
|
| }
|
|