退库管理
This commit is contained in:
@@ -16,6 +16,32 @@
|
||||
<result property="delFlag" column="del_flag"/>
|
||||
<result property="remark" column="remark"/>
|
||||
</resultMap>
|
||||
<select id="selectVoPagePlus" resultType="com.ruoyi.oa.domain.vo.SysOaWarehouseLogVo">
|
||||
SELECT
|
||||
log.*,
|
||||
master.master_num AS master_num,
|
||||
ware.name AS warehouse_name,
|
||||
ware.brand AS warehouse_brand,
|
||||
ware.model AS warehouse_model,
|
||||
ware.specifications AS warehouse_spspecifications
|
||||
FROM sys_oa_warehouse_log log
|
||||
LEFT JOIN sys_oa_warehouse_master master ON log.master_id = master.master_id
|
||||
LEFT JOIN sys_oa_warehouse ware ON log.warehouse_id = ware.id
|
||||
${ew.customSqlSegment}
|
||||
</select>
|
||||
<select id="selectVoListPlus" resultType="com.ruoyi.oa.domain.vo.SysOaWarehouseLogVo">
|
||||
SELECT
|
||||
log.*,
|
||||
master.master_num AS master_num,
|
||||
ware.name AS warehouse_name,
|
||||
ware.brand AS warehouse_brand,
|
||||
ware.model AS warehouse_model,
|
||||
ware.specifications AS warehouse_spspecifications
|
||||
FROM sys_oa_warehouse_log log
|
||||
LEFT JOIN sys_oa_warehouse_master master ON log.master_id = master.master_id
|
||||
LEFT JOIN sys_oa_warehouse ware ON log.warehouse_id = ware.id
|
||||
${ew.customSqlSegment}
|
||||
</select>
|
||||
|
||||
|
||||
</mapper>
|
||||
|
||||
Reference in New Issue
Block a user