huminmin
2026-05-11 bd424ceae9e38a0a50418f71093becd1430cc83b
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
package com.ruoyi.production.bean.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.List;
 
@Data
@Schema(name = "ProductionTeamDto", description = "生产班组请求参数")
public class ProductionTeamDto {
 
    @Schema(description = "班组ID")
    private Long id;
 
    @Schema(description = "班组名称")
    private String teamName;
 
    @Schema(description = "班组长ID")
    private Long leaderId;
 
    @Schema(description = "班组成员ID列表")
    private List<Long> memberIds;
 
    @Schema(description = "备注")
    private String remark;
}