| | |
| | | <result property="abandonreason" column="AbandonReason"/> |
| | | <result property="transplanttime" column="TransplantTime"/> |
| | | <result property="transplantdoct" column="TransplantDoct"/> |
| | | <result property="transplanthospitalno" column="TransplantHospitalNo"/> |
| | | <result property="transplanthospitalname" column="TransplantHospitalName"/> |
| | | <result property="hospitalno" column="HospitalNo"/> |
| | | <result property="hospitalname" column="HospitalName"/> |
| | | <result property="name" column="Name"/> |
| | | <result property="sex" column="Sex"/> |
| | | <result property="idcardtype" column="IDCardType"/> |
| | |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="caseno" column="caseno"/> |
| | | <result property="donorname" column="donorname"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectServiceDonatecomporganVo"> |
| | |
| | | AbandonReason, |
| | | TransplantTime, |
| | | TransplantDoct, |
| | | TransplantHospitalNo, |
| | | TransplantHospitalName, |
| | | HospitalNo, |
| | | HospitalName, |
| | | Name, |
| | | caseno, |
| | | Sex, |
| | |
| | | create_by, |
| | | create_time, |
| | | update_by, |
| | | update_time |
| | | update_time, |
| | | donorname |
| | | from service_donatecomporgan |
| | | </sql> |
| | | |
| | |
| | | <if test="abandonreason != null and abandonreason != ''">and AbandonReason = #{abandonreason}</if> |
| | | <if test="transplanttime != null ">and TransplantTime = #{transplanttime}</if> |
| | | <if test="transplantdoct != null and transplantdoct != ''">and TransplantDoct = #{transplantdoct}</if> |
| | | <if test="transplanthospitalno != null and transplanthospitalno != ''">and TransplantHospitalNo = |
| | | #{transplanthospitalno} |
| | | <if test="hospitalno != null and hospitalno != ''">and HospitalNo = |
| | | #{hospitalno} |
| | | </if> |
| | | <if test="transplanthospitalname != null and transplanthospitalname != ''">and TransplantHospitalName like |
| | | concat('%', #{transplanthospitalname}, '%') |
| | | <if test="hospitalname != null and hospitalname != ''">and HospitalName like |
| | | concat('%', #{hospitalname}, '%') |
| | | </if> |
| | | <if test="name != null and name != ''">and Name like concat('%', #{name}, '%')</if> |
| | | <if test="sex != null ">and Sex = #{sex}</if> |
| | |
| | | <if test="phone != null and phone != ''">and Phone = #{phone}</if> |
| | | <if test="residenceaddress != null and residenceaddress != ''">and ResidenceAddress = #{residenceaddress} |
| | | </if> |
| | | <if test="donorname != null and donorname != ''">and donorname = #{donorname} |
| | | </if> |
| | | <if test="residenceprovince != null and residenceprovince != ''">and ResidenceProvince = |
| | | #{residenceprovince} |
| | | </if> |