| | |
| | | */ |
| | | private String securitynumber; |
| | | |
| | | /** |
| | | * 审查状态 |
| | | */ |
| | | @TableField("examination_type") |
| | | private String examinationType; |
| | | |
| | | |
| | | /** |
| | | * 审查明细 |
| | | */ |
| | | @TableField("examination_mx") |
| | | private String examinationMx; |
| | | |
| | | /** |
| | | * 是否采集指纹 |
| | | */ |
| | | private String fingerprint; |
| | | |
| | | /** |
| | | * 是否采集照片 |
| | | */ |
| | | private String photo; |
| | | |
| | | } |
| | |
| | | <if test="user.status!=null and user.status != ''"> |
| | | and bu.status = #{user.status} |
| | | </if> |
| | | <if test="user.jurisdiction!=null and user.jurisdiction != ''"> |
| | | and bu.jurisdiction = #{user.jurisdiction} |
| | | </if> |
| | | <if test="user.realName!=null and user.realName != ''"> |
| | | and bu.real_name like concat('%', #{user.realName},'%') |
| | | </if> |