| | |
| | | @NotNull(message = "客户编号不能为空") |
| | | private Long customerId; |
| | | |
| | | @Schema(description = "关联合同编号", example = "1") |
| | | private Long contractId; |
| | | |
| | | @Schema(description = "合同单号", example = "HT001") |
| | | private String contractNo; |
| | | |
| | | @Schema(description = "下单时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotNull(message = "下单时间不能为空") |
| | | private LocalDateTime orderTime; |
| | |
| | | @Schema(description = "税率,百分比", example = "99.88") |
| | | private BigDecimal taxPercent; |
| | | |
| | | @Schema(description = "是否需要生产(0=否 1=是)", example = "1") |
| | | private Integer needProduction; |
| | | |
| | | @Schema(description = "备注", example = "随便") |
| | | private String remark; |
| | | |