| | |
| | | @ExcelProperty("合同金额") |
| | | private BigDecimal totalPrice; |
| | | |
| | | @Schema(description = "定金金额,单位:元", example = "1000.00") |
| | | @ExcelProperty("定金金额") |
| | | private BigDecimal depositPrice; |
| | | |
| | | @Schema(description = "已回款金额", example = "5617") |
| | | @ExcelProperty("已回款金额") |
| | | private BigDecimal totalReceivablePrice; |
| | | |
| | | @Schema(description = "关联 ERP 销售订单编号", example = "12345") |
| | | private Long orderId; |
| | | @Schema(description = "ERP 销售订单单号", example = "SO001") |
| | | @ExcelProperty("销售订单单号") |
| | | private String orderNo; |
| | | |
| | | @Schema(description = "客户签约人编号", example = "18546") |
| | | private Long signContactId; |
| | |
| | | @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "888") |
| | | private Long id; |
| | | |
| | | @Schema(description = "产品编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "20529") |
| | | private Long productId; |
| | | @Schema(description = "产品名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "李四") |
| | | private String productName; |
| | | @Schema(description = "产品条码", requiredMode = Schema.RequiredMode.REQUIRED, example = "20529") |
| | | private String productNo; |
| | | @Schema(description = "产品单位", requiredMode = Schema.RequiredMode.REQUIRED, example = "李四") |
| | | private Integer productUnit; |
| | | @Schema(description = "MDM 物料编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "20529") |
| | | private Long itemId; |
| | | @Schema(description = "物料编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "ITEM001") |
| | | private String itemCode; |
| | | @Schema(description = "物料名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "物料A") |
| | | private String itemName; |
| | | @Schema(description = "物料条码", example = "BAR001") |
| | | private String itemBarCode; |
| | | @Schema(description = "计量单位编号", example = "1") |
| | | private Long itemUnitId; |
| | | @Schema(description = "计量单位名称", example = "个") |
| | | private String itemUnitName; |
| | | |
| | | @Schema(description = "产品单价", requiredMode = Schema.RequiredMode.REQUIRED, example = "123.00") |
| | | private BigDecimal productPrice; |
| | | @Schema(description = "物料原价", requiredMode = Schema.RequiredMode.REQUIRED, example = "100.00") |
| | | private BigDecimal itemPrice; |
| | | |
| | | @Schema(description = "合同价格", requiredMode = Schema.RequiredMode.REQUIRED, example = "123.00") |
| | | private BigDecimal contractPrice; |