12 小时以前 f61043f70c126c4b464a4ebc7dd635fcf7b679df
yudao-module-erp/src/main/java/cn/iocoder/yudao/module/erp/controller/admin/sale/vo/order/ErpSaleOrderSaveReqVO.java
@@ -19,6 +19,12 @@
    @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;
@@ -35,11 +41,11 @@
    @Schema(description = "定金金额,单位:元", example = "7127")
    private BigDecimal depositPrice;
    @Schema(description = "附件地址", example = "https://www.iocoder.cn")
    private String fileUrl;
    @Schema(description = "备注", example = "你猜")
    private String remark;
    @Schema(description = "附件 blobId 列表", example = "[1, 2, 3]")
    private List<Long> blobIds;
    @Schema(description = "订单清单列表")
    private List<Item> items;
@@ -68,6 +74,9 @@
        @Schema(description = "税率,百分比", example = "99.88")
        private BigDecimal taxPercent;
        @Schema(description = "是否需要生产(0=否 1=是)", example = "1")
        private Integer needProduction;
        @Schema(description = "备注", example = "随便")
        private String remark;