select acc.real_name,count(*) as count1,count(t2.id2) as count2,count(t4.id4) as count3,count(t5.id5) as count4
  from tbl_job_checkbill_item t1
  left join (select i.bill_item_id as id2 from tbl_job_checkbill_item i where apply_fillup_flag = 'N')
  t2 on t2.id2 = t1.bill_item_id 
  left join tbl_job_item tji on t1.job_item_id = tji.job_item_id
  left join (select ii.apply_id as id3,ii.bill_item_id as id4,ii.apply_id,ii.auditing_status,ii.auditing_result from tbl_job_overitem_app ii where auditing_status ='N' and auditing_result = 'N')
  t4 on t1.bill_item_id = t4.id4 and ROUND(TO_NUMBER(t1.exec_end_time - t1.filled_time) * 24 * 60) >0
  left join (select ii.apply_id as id5,ii.bill_item_id as id6 from tbl_job_overitem_app ii where auditing_status ='N' and auditing_result = 'Y')
  t5 on t1.bill_item_id = t5.id6 and ROUND(TO_NUMBER(t1.exec_end_time - t1.filled_time) * 24 * 60) >0
  left join tbl_job_template_org org on tji.template_id = org.template_id and org.org_type = 'D'
  left join tbl_job_checkbill_user ckuser on t1.bill_item_id = ckuser.bill_item_id
  left join tbl_auth_org aorg on aorg.org_id = org.org_id
  left join tbl_auth_supervise_org sorg on sorg.org_id = aorg.org_id and ckuser.user_id = sorg.account_id
  left join tbl_auth_account acc on sorg.account_id = acc.account_id
  where org.org_id = 44 and 
  to_char(t1.filled_Time,'yyyy-mm-dd hh24:mi:ss') between '2011-03-21 00:00:00' and '2011-04-01 00:00:00'
 group by acc.real_name
<resultMap class="com.fulan.itil.template.account.pEntity" id="resultMap">
<result column="real_name" javaType="string" property="realName"/>
<result column="count1" javaType="int" property="allCount"/>
<result column="count2" javaType="int" property="zcCount"/>
                  <result column="count3" javaType="int" property="csbt"/>
<result column="count4" javaType="int" property="cswt"/>
</resultMap>  
字段real_name  的 result 可以写成<result column="real_name" javaType="string" property="realName"/>
那么 ,count(*) as count1,count(t2.id2) as count2,count(t4.id4) as count3,count(t5.id5) as count4
该如何写result呢
请教下  谢谢