| | |
| | | @Schema(description = "联系人编号", example = "1") |
| | | private Long contactId; |
| | | |
| | | @Schema(description = "销售订单编号", example = "1") |
| | | @Schema(description = "销售订单编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @NotNull(message = "销售订单号不能为空") |
| | | private Long saleOrderId; |
| | | |
| | | @Schema(description = "销售订单号", example = "SO202401010001") |
| | | @Schema(description = "销售订单号", requiredMode = Schema.RequiredMode.REQUIRED, example = "SO202401010001") |
| | | @NotEmpty(message = "销售订单号不能为空") |
| | | private String saleOrderNo; |
| | | |
| | | @Schema(description = "合同编号", example = "1") |