<select id="getNormalTransactions" resultMap="SLS_TRN_HDR_OPR">
SELECT hdr.sls_tran_opr_num
FROM
Table
WHERE RTKL.RETRICKLE_SOURCE='O'
AND RTKL.RETRICKLE_STATUS='V';
</select>
mapper.java ---
public List<SlsTrnHdrOpr> getNormalTransactions()
Impl class : ---
List<SlsTrnHdrOpr> normalTranDTOs = retrickleTransactionDAO
.getNormalTransactions();
DAO Class :
List<SlsTrnHdrOpr> normalTrans = null;
normalTrans = retrickleMapper
.getNormalTransactions();
Could you please help me out .
Thanks
--