| | |
| | | private String acctType; |
| | | private String acctTypeName; |
| | | private String objId; |
| | | private String [] objIds; |
| | | private String acctId; |
| | | private String acctName; |
| | | private String objType; |
| | |
| | | public void setIdCard(String idCard) { |
| | | this.idCard = idCard; |
| | | } |
| | | |
| | | public String[] getObjIds() { |
| | | return objIds; |
| | | } |
| | | |
| | | public void setObjIds(String[] objIds) { |
| | | this.objIds = objIds; |
| | | } |
| | | } |
| | |
| | | <if test="objId !=null and objId != ''"> |
| | | and t.obj_id= #{objId} |
| | | </if> |
| | | <if test="objIds !=null "> |
| | | and t.obj_id in |
| | | <foreach collection="objIds" item="item" open="(" close=")" separator=","> |
| | | #{item} |
| | | </foreach> |
| | | </if> |
| | | <if test="acctId !=null and acctId != ''"> |
| | | and t.acct_id= #{acctId} |
| | | </if> |