package com.doumee.dao.openapi.response; 
 | 
  
 | 
import io.swagger.annotations.ApiModel; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.math.BigDecimal; 
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * Created by IntelliJ IDEA. 
 | 
 * 
 | 
 * @Author : Rk 
 | 
 * @create 2023/12/7 11:19 
 | 
 */ 
 | 
@Data 
 | 
@ApiModel("【月台】月台当前作业信息WMS详情返回参数") 
 | 
public class PlatformDataWmsInfoResponse { 
 | 
    @ApiModelProperty(value = "计划收货数量", example = "1") 
 | 
    private BigDecimal ioQty; 
 | 
    @ApiModelProperty(value = "物料名称", example = "1") 
 | 
    private String  materialName; 
 | 
  
 | 
} 
 |