This commit is contained in:
砂糖
2026-04-07 17:40:05 +08:00
2 changed files with 7 additions and 0 deletions

View File

@@ -95,5 +95,9 @@ public class WmsDeliveryWaybillDetailBo extends BaseEntity {
*/ */
private String remark; private String remark;
/**
* 发货计划ID用于根据计划ID查询所有关联的发货单明细
*/
private Long planId;
} }

View File

@@ -263,6 +263,9 @@
<if test="bo.unitPrice != null"> <if test="bo.unitPrice != null">
AND d.unit_price = #{bo.unitPrice} AND d.unit_price = #{bo.unitPrice}
</if> </if>
<if test="bo.planId != null">
AND w.plan_id = #{bo.planId}
</if>
</select> </select>