|
|
|
@ -11,10 +11,14 @@ |
|
|
|
|
<result column="create_time" property="createTime" /> |
|
|
|
|
<result column="status" property="status" /> |
|
|
|
|
<result column="audit_opinion" property="auditOpinion" /> |
|
|
|
|
<result column="reason" property="reason" /> |
|
|
|
|
<result column="loan_money" property="loanMoney" /> |
|
|
|
|
<result column="loan_tern" property="loanTern" /> |
|
|
|
|
</resultMap> |
|
|
|
|
|
|
|
|
|
<select id="selectAuditProcessList" resultMap="BaseResultMap"> |
|
|
|
|
select dap.id,dap.business_id,dap.approver,dap.dept_name,dap.create_time,dap.audit_opinion,dbps.business_status as status |
|
|
|
|
select dap.id,dap.business_id,dap.approver,dap.dept_name,dap.create_time,dap.audit_opinion, |
|
|
|
|
dbps.business_status as status,dap.reason,dap.loan_money,dap.loan_tern |
|
|
|
|
from dg_audit_process dap |
|
|
|
|
left join dg_business_process_status dbps on dbps.business_id = dap.business_id |
|
|
|
|
where dap.business_id = #{businessId} |
|
|
|
|