Commit 44c81815 by qwmqiuwenmin

Merge branch 'developer' into 'master'

fix

See merge request !14
parents 634ced4d c748d363
...@@ -588,7 +588,11 @@ public class StaffApiServiceImpl implements StaffApiService { ...@@ -588,7 +588,11 @@ public class StaffApiServiceImpl implements StaffApiService {
} }
if ("clerkGender".equals(name)) { if ("clerkGender".equals(name)) {
clerkMid.setClerkGender((value == null ? null : Integer.parseInt(value))); try {
clerkMid.setClerkGender((value == null ? null : Integer.parseInt(value)));
} catch (Exception e) {
// TODO: handle exception
}
continue; continue;
} }
......
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 to comment