| | |
| | | @DiffLogField(name = "合同金额") |
| | | private BigDecimal totalPrice; |
| | | |
| | | @Schema(description = "定金金额,单位:元", example = "1000.00") |
| | | @DiffLogField(name = "定金金额") |
| | | private BigDecimal depositPrice; |
| | | |
| | | @Schema(description = "客户签约人编号", example = "18546") |
| | | @DiffLogField(name = "客户签约人", function = CrmContactParseFunction.NAME) |
| | | private Long signContactId; |
| | |
| | | @AllArgsConstructor |
| | | public static class Product { |
| | | |
| | | @Schema(description = "产品编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "20529") |
| | | @NotNull(message = "产品编号不能为空") |
| | | private Long productId; |
| | | @Schema(description = "MDM 物料编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "20529") |
| | | @NotNull(message = "物料编号不能为空") |
| | | private Long itemId; |
| | | |
| | | @Schema(description = "产品单价", requiredMode = Schema.RequiredMode.REQUIRED, example = "123.00") |
| | | @NotNull(message = "产品单价不能为空") |
| | | private BigDecimal productPrice; |
| | | @Schema(description = "物料原价", requiredMode = Schema.RequiredMode.REQUIRED, example = "123.00") |
| | | @NotNull(message = "物料原价不能为空") |
| | | private BigDecimal itemPrice; |
| | | |
| | | @Schema(description = "合同价格", requiredMode = Schema.RequiredMode.REQUIRED, example = "123.00") |
| | | @NotNull(message = "合同价格不能为空") |