| | |
| | | <if test="zc.cardid!=null and zc.cardid!=''"> |
| | | and z.cardid like concat(concat('%', #{zc.cardid}),'%') |
| | | </if> |
| | | <if test="zc.deptid!=null and zc.deptid!=''"> |
| | | and z.deptid = #{zc.deptid} |
| | | </if> |
| | | </select> |
| | | |
| | | |
| | |
| | | values (#{username}, #{password}, #{sname}, #{cardid}, #{zctime}, #{deptid}) |
| | | </insert> |
| | | |
| | | <!--根据用户名用户注册信息--> |
| | | <select id="selectType" resultType="String"> |
| | | select type |
| | | from act_zc |
| | | where username = #{param1} |
| | | </select> |
| | | |
| | | <!--根据用户名查询注册用户注册信息--> |
| | | <select id="getAuditSuccessInfo" resultType="org.springblade.modules.zc.entity.Zc"> |
| | | select * from act_zc |
| | | where username = #{param1} |
| | | </select> |
| | | |
| | | </mapper> |