jobid查询接口;

This commit is contained in:
王奎兴
2026-09-05 19:21:17 +08:00
parent 25102b5207
commit f6c454765e
2 changed files with 24 additions and 0 deletions
@@ -71,6 +71,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
typeHandler="com.mhd.common.core.handler.ListTypeHandler" />
<result property="materialClassifyName" column="material_classify_name"
typeHandler="com.mhd.common.core.handler.ListTypeHandler" />
<result property="monthlyWarehouseRentUnit" column="monthly_warehouse_rent_unit" />
<result property="halfMonthWarehouseRentUnit" column="half_month_warehouse_rent_unit" />
<result property="halfMonthWarehouseRent" column="half_month_warehouse_rent" />
<result property="monthlyWarehouseRent" column="monthly_warehouse_rent" />
</resultMap>
@@ -95,6 +99,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
a.bar_code as inv_bar_code,
a.in_order_number,a.lot_number,
a.last_billing_time,
b.MONTHLY_WAREHOUSE_RENT_UNIT,
b.HALF_MONTH_WAREHOUSE_RENT_UNIT,
b.HALF_MONTH_WAREHOUSE_RENT,
b.MONTHLY_WAREHOUSE_RENT,
CASE WHEN IFNULL(sum(a.inventory_quantity), 0) = 0 THEN 1 ELSE 0 END as sort_order
</sql>