| | |
| | | <result property="organcount" column="organcount"/> |
| | | <result property="operationbegtime" column="operationBegTime"/> |
| | | <result property="completetime" column="completeTime"/> |
| | | <result property="regionalLevel" column="regionalLevel"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectVDonationworkflowVo"> |
| | |
| | | conclusionTime, |
| | | organcount, |
| | | operationBegTime, |
| | | completeTime |
| | | completeTime, |
| | | regionalLevel |
| | | from v_donationworkflow |
| | | </sql> |
| | | |
| | |
| | | <if test="reportername != null and reportername != ''">and reporterName like concat('%', #{reportername}, |
| | | '%') |
| | | </if> |
| | | -- |
| | | <if test="donatetime != null ">and donatetime = #{donatetime}</if> |
| | | <if test="reporttime != null ">and ReportTime = #{reporttime}</if> |
| | | <if test="starttime != null ">and donatetime >= #{starttime}</if> |
| | | <if test="endtime != null ">and donatetime <= #{endtime} |
| | | </if> |
| | | <if test="coreteamassessconclusion != null and coreteamassessconclusion != ''">and CoreTeamAssessConclusion |
| | | = #{coreteamassessconclusion} |
| | | </if> |
| | |
| | | <if test="organcount != null ">and organcount = #{organcount}</if> |
| | | <if test="operationbegtime != null ">and operationBegTime = #{operationbegtime}</if> |
| | | <if test="completetime != null ">and completeTime = #{completetime}</if> |
| | | <if test="regionalLevel != null ">and regionalLevel = #{regionalLevel}</if> |
| | | </where> |
| | | </select> |
| | | |