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.

52 lines
1.6 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.erp.mapper.ErpContractInfoMapper">
<resultMap type="org.dromara.oa.erp.domain.vo.ErpContractInfoVo" id="ErpContractInfoResult">
</resultMap>
<select id="selectCustomErpContractInfoVoList" resultMap="ErpContractInfoResult">
select contract_id,
tenant_id,
contract_flag,
contract_code,
contract_name,
contract_category,
contract_type,
business_direction,
contract_dept_id,
contract_date,
total_price,
one_customer_id,
one_represent,
one_date,
two_customer_id,
two_represent,
two_date,
contract_status,
flow_status,
template_id,
oss_id,
payment_method,
signature_appendix,
internal_contract_code,
external_contract_code,
order_contract_code,
project_contract_code,
warranty_period,
tax_rate,
remark,
active_flag,
del_flag,
create_dept,
create_by,
create_time,
update_by,
update_time
from erp_contract_info t
${ew.getCustomSqlSegment}
</select>
</mapper>