Commit e382ec7b by Huang Linyu

add NULL check for TelTaskDetailCallBean

parent 00764816
...@@ -177,7 +177,7 @@ public class TelTaskConttroller { ...@@ -177,7 +177,7 @@ public class TelTaskConttroller {
Collection<VoucherItemDTO> vourcherList = new ArrayList<VoucherItemDTO>(); Collection<VoucherItemDTO> vourcherList = new ArrayList<VoucherItemDTO>();
if (bean.getUserExtBean() != null) { if (bean!=null && bean.getUserExtBean() != null) {
if (StringUtils.hasText(bean.getUserExtBean().getGender())) { if (StringUtils.hasText(bean.getUserExtBean().getGender())) {
bean.getUserExtBean().setGender( bean.getUserExtBean().setGender(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment