skyouc
昨天 52d78628a70d6aa129f874050b7846d259819554
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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;
 
}