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;
|
}
|