package com.vincent.rsf.openApi.entity.dto; 
 | 
  
 | 
import io.swagger.annotations.ApiModel; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
import lombok.experimental.Accessors; 
 | 
  
 | 
@Data 
 | 
@Accessors(chain = true) 
 | 
@ApiModel(value = "OrderDto", description = "订单信息") 
 | 
public class OrderDto { 
 | 
  
 | 
    /** 
 | 
     * 单号 
 | 
     */ 
 | 
    @ApiModelProperty("订单号") 
 | 
    private String orderNo; 
 | 
  
 | 
    /** 
 | 
     * PO单号 
 | 
     */ 
 | 
    @ApiModelProperty(value = "PO单号") 
 | 
    private String poCode; 
 | 
  
 | 
    /** 
 | 
     * 单据类型 
 | 
     */ 
 | 
    @ApiModelProperty(value = "单据类型") 
 | 
    private String type; 
 | 
  
 | 
    /** 
 | 
     * 业务类型 
 | 
     */ 
 | 
    @ApiModelProperty(value = "业务类型") 
 | 
    private String wkType; 
 | 
  
 | 
    /** 
 | 
     * 送货数量 
 | 
     */ 
 | 
    @ApiModelProperty(value = "送货数量") 
 | 
    private Double anfme; 
 | 
  
 | 
  
 | 
    @ApiModelProperty("执行数量") 
 | 
    private Double workQty; 
 | 
  
 | 
    /** 
 | 
     * 已收数量 
 | 
     */ 
 | 
    @ApiModelProperty(value = "已收数量") 
 | 
    private Double qty; 
 | 
  
 | 
  
 | 
    @ApiModelProperty("执行状态") 
 | 
    private Short exceStatus; 
 | 
  
 | 
} 
 |