You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.0 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.dromara.oa.base.mapper.BaseMaterialInfoMapper">
<resultMap type="org.dromara.oa.base.domain.vo.BaseMaterialInfoVo" id="BaseMaterialInfoResult">
</resultMap>
<select id="selectCustomBaseMaterialInfoVoList" resultMap="BaseMaterialInfoResult">
select material_id,
tenant_id,
material_code,
material_name,
material_brand,
material_model,
unit_id,
material_parameter,
purchase_price,
foreign_price,
stocking_period,
remark,
active_flag,
del_flag,
create_dept,
create_by,
create_time,
update_by,
update_time
from base_material_info t
${ew.getCustomSqlSegment}
</select>
</mapper>