mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 13:22:07 +08:00
计算用板量优化测试
This commit is contained in:
+2
-1
@@ -831,7 +831,8 @@ public class OptimizePlanServiceImpl implements OptimizePlanService {
|
||||
))
|
||||
.source(s -> s
|
||||
.filter(f -> f
|
||||
.includes("holeDetail", "sideHoleDetail", "contourDetail", "sideDetail", "id", "plateId")
|
||||
.includes("holeDetail", "sideHoleDetail", "contourDetail", "sideDetail", "id", "plateId", "pointDetail",
|
||||
"rawPointDetail", "splitLength", "splitWidth", "offsetX", "offsetY")
|
||||
)
|
||||
)
|
||||
.trackTotalHits(t -> t.enabled(false));
|
||||
|
||||
+32
-6
@@ -377,10 +377,40 @@
|
||||
|
||||
</select>
|
||||
|
||||
<resultMap id="OrderSourcePlateDetialMap" type="com.cf.imes.module.executor.controller.admin.plan.vo.PlateDetailRespVO">
|
||||
<result property="goodsId" column="plateGoodsId"/>
|
||||
<result property="goodsName" column="goodsName"/>
|
||||
<result property="brand" column="brand"/>
|
||||
<result property="color" column="color"/>
|
||||
<result property="material" column="material"/>
|
||||
<result property="plateId" column="plateId"/>
|
||||
<result property="orderId" column="orderId"/>
|
||||
<result property="name" column="name"/>
|
||||
<result property="plateNo" column="plateNo"/>
|
||||
<result property="customPlateNo" column="customPlateNo"/>
|
||||
<result property="type" column="type"/>
|
||||
<result property="id" column="goodsId"/>
|
||||
<result property="width" column="width"/>
|
||||
<result property="height" column="height"/>
|
||||
<result property="thickness" column="thickness"/>
|
||||
<result property="splitWidth" column="splitWidth"/>
|
||||
<result property="splitHeight" column="splitHeight"/>
|
||||
<result property="sealLeft" column="sealLeft"/>
|
||||
<result property="sealRight" column="sealRight"/>
|
||||
<result property="sealUp" column="sealUp"/>
|
||||
<result property="sealDown" column="sealDown"/>
|
||||
<result property="area" column="area"/>
|
||||
<result property="texture" column="texture"/>
|
||||
<result property="holeFace" column="holeFace"/>
|
||||
<result property="openDoorType" column="openDoorType"/>
|
||||
<result property="offsetX" column="offsetX"/>
|
||||
<result property="offsetY" column="offsetY"/>
|
||||
<result property="isSpecialShaped" column="isSpecialShaped"/>
|
||||
<result property="remark" column="remark"/>
|
||||
</resultMap>
|
||||
|
||||
<select id="selectPlateListByGoodsIds"
|
||||
resultType="com.cf.imes.module.executor.controller.admin.plan.vo.PlateDetailRespVO">
|
||||
|
||||
resultMap="OrderSourcePlateDetialMap">
|
||||
|
||||
select
|
||||
ogs.goods_id as plateGoodsId,
|
||||
@@ -398,8 +428,6 @@
|
||||
op.width as width,
|
||||
op.height as height,
|
||||
op.thickness as thickness,
|
||||
op.split_width as splitWidth,
|
||||
op.split_height as splitHeight,
|
||||
op.seal_left as sealLeft,
|
||||
op.seal_right as sealRight,
|
||||
op.seal_up as sealUp,
|
||||
@@ -408,8 +436,6 @@
|
||||
op.texture as texture,
|
||||
op.hole_face as holeFace,
|
||||
op.open_door_type as openDoorType,
|
||||
op.offset_x as offsetX,
|
||||
op.offset_y as offsetY,
|
||||
op.is_special_shaped as isSpecialShaped,
|
||||
op.remark as remark
|
||||
|
||||
|
||||
Reference in New Issue
Block a user