禅道bug#1537修复

This commit is contained in:
gaoqr
2026-06-09 12:07:13 +08:00
parent 98f553ca50
commit 9aeb56fc3a
2 changed files with 21 additions and 1 deletions
@@ -54,6 +54,21 @@ public class OrderRespVOCopy {
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND, timezone = TIME_ZONE_DEFAULT) @JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND, timezone = TIME_ZONE_DEFAULT)
private LocalDateTime deliveryDate; private LocalDateTime deliveryDate;
@Schema(description = "客户电话")
private String phoneNumber;
@Schema(description = "经销商")
private String dealer;
@Schema(description = "业务员")
private String salesman;
@Schema(description = "拆单员")
private String splitter;
@Schema(description = "备注")
private String remark;
@Schema(description = "更新时间") @Schema(description = "更新时间")
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND, timezone = TIME_ZONE_DEFAULT) @JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND, timezone = TIME_ZONE_DEFAULT)
private Date updateTime; private Date updateTime;
@@ -39,7 +39,12 @@
o.customer AS customer, o.customer AS customer,
o.address AS address, o.address AS address,
o.custom_order_no AS defineId, o.custom_order_no AS defineId,
o.status AS status o.status AS status,
o.phone_number,
o.dealer,
o.salesman,
o.splitter,
o.remark
FROM orders o FROM orders o