| | |
| | | </resultMap> |
| | | |
| | | <sql id="selectServiceReimbursementpayeeVo"> |
| | | select id, rbid, orderno, persontype, personname, bankname, bankcardno, amount, phone, familyrelations, paiddate, remark, del_flag, create_by, create_time, update_by, update_time, uploadflag, uploadtime from service_reimbursementpayee |
| | | select id, |
| | | rbid, |
| | | orderno, |
| | | persontype, |
| | | personname, |
| | | bankname, |
| | | bankcardno, |
| | | amount, |
| | | phone, |
| | | familyrelations, |
| | | paiddate, |
| | | remark, |
| | | del_flag, |
| | | create_by, |
| | | create_time, |
| | | update_by, |
| | | update_time, |
| | | uploadflag, |
| | | uploadtime |
| | | from service_reimbursementpayee |
| | | </sql> |
| | | |
| | | <select id="selectServiceReimbursementpayeeList" parameterType="ServiceReimbursementpayee" resultMap="ServiceReimbursementpayeeResult"> |
| | | <select id="selectServiceReimbursementpayeeList" parameterType="ServiceReimbursementpayee" |
| | | resultMap="ServiceReimbursementpayeeResult"> |
| | | <include refid="selectServiceReimbursementpayeeVo"/> |
| | | <where> |
| | | <if test="rbid != null "> and rbid = #{rbid}</if> |
| | |
| | | </where> |
| | | </select> |
| | | |
| | | |
| | | <select id="getReimbursementpayeeInfo" resultType="com.ruoyi.project.domain.ServiceReimbursementpayee"> |
| | | SELECT b.personname as personname,b.bankname as bankname,b.bankcardno as bankcardno,b.amount as |
| | | amount,b.persontype as persontype,b.paiddate as paiddate,b.Remark as remark from service_reimbursement |
| | | a,service_reimbursementpayee b where a.id=b.RBID and a.del_flag!=1 and b.del_flag!=1 |
| | | <if test="id != null"> |
| | | and a.id = #{id} |
| | | </if> |
| | | <if test='username != null and username != ""'> |
| | | and a.UserName=#{username} |
| | | </if> |
| | | <if test='recordstatus != null and recordstatus != ""'> |
| | | and a.FlowLevel=#{recordstatus} |
| | | </if> |
| | | <if test='starttime != null and endtime != ""'> |
| | | and a.create_time BETWEEN #{starttime} AND #{endtime} |
| | | </if> |
| | | |
| | | ORDER BY a.id desc |
| | | </select> |
| | | |
| | | </mapper> |