liyong
3 天以前 96a020a65509f807ac3d27872f903e22f2218165
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
package cn.iocoder.yudao.module.erp.controller.admin.sale.vo.order;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * ERP 销售订单项 Response VO(供前端发货通知单创建时查询订单明细)
 */
@Schema(description = "管理后台 - ERP 销售订单项 Response VO")
@Data
public class ErpSaleOrderItemRespVO {
 
    @Schema(description = "编号(销售订单行ID)", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long id;
 
    @Schema(description = "销售订单编号", example = "1")
    private Long orderId;
 
    @Schema(description = "物料编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long productId;
 
    @Schema(description = "物料名称", example = "产品A")
    private String productName;
 
    @Schema(description = "物料条码", example = "12345678")
    private String productBarCode;
 
    @Schema(description = "计量单位编号", example = "1")
    private Long productUnitId;
 
    @Schema(description = "计量单位名称", example = "个")
    private String productUnitName;
 
    @Schema(description = "产品单价", example = "100.00")
    private BigDecimal productPrice;
 
    @Schema(description = "数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "10")
    private BigDecimal count;
 
    @Schema(description = "总价", example = "1000.00")
    private BigDecimal totalPrice;
 
    @Schema(description = "备注", example = "备注")
    private String remark;
 
}