package com.ruoyi.production.dto;
|
|
import com.ruoyi.production.pojo.ProductMaterial;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* <br>
|
* 物料配置分组 DTO
|
* </br>
|
*
|
* @author deslrey
|
* @since 2026/03/12 13:43
|
*/
|
@Data
|
@ApiModel(value = "ProductMaterialGroupDto", description = "物料配置分组数据")
|
public class ProductMaterialGroupDto {
|
|
@ApiModelProperty("配置ID")
|
private Integer configId;
|
|
@ApiModelProperty("配置名称")
|
private String configName;
|
|
@ApiModelProperty("物料列表")
|
private List<ProductMaterial> materialList;
|
}
|