| | |
| | | <result column="order_id" property="orderId"/> |
| | | <result column="production_id" property="productionId"/> |
| | | <result column="splitting_status" property="splittingStatus"/> |
| | | <result column="founder" property="founder"/> |
| | | <result column="create_time" property="createTime"/> |
| | | <!--接收其他外键实体类数据--> |
| | | <result column="batch" property="order.batch"/> |
| | |
| | | o.order_id, |
| | | od.order_number, |
| | | ogd.production_id, |
| | | ogd.founder, |
| | | o.batch, |
| | | o.project, |
| | | o.order_type, |
| | |
| | | left join `order` as o |
| | | on o.order_id=ogd.order_id |
| | | where ogd.production_id IS NOT NULL |
| | | |
| | | and o.order_review>0 |
| | | <if test="orderGlassDetail.orderId != null and orderGlassDetail.orderId != ''"> |
| | | and o.order_id regexp #{orderGlassDetail.orderId} |
| | | </if> |