订单绑定相关

This commit is contained in:
潘荣晟
2026-02-11 09:31:51 +08:00
parent 6037f038d2
commit 10698e4aeb
3 changed files with 13 additions and 0 deletions

View File

@@ -294,4 +294,9 @@ public class OrderDTO {
*/
@Schema(description = "订单明细")
private List<OrdDtlDTO> OrdDtlDTOS;
/**
* 关联订单ID
*/
@Schema(description = "关联订单ID")
private Long relatedOrderId; // 关联订单ID
}

View File

@@ -264,4 +264,9 @@ public class EntrustOrderOrderDO extends BusinessBaseDO {
*/
@TableField("SPLY_BSN_TP")
private String splyBsnTp;
/**
* 相关订单ID
*/
@TableField(value = "REL_ORD_ID")
private Long relatedOrderId;
}

View File

@@ -311,4 +311,7 @@ public class SalesOrderDO extends BusinessBaseDO {
@TableField("ISS_CAUS")
private String issueCause;
@TableField(value = "REL_ORD_ID")
private Long relatedOrderId;
}