|
|
|
@ -27,6 +27,8 @@ import java.util.Map;
|
|
|
|
|
* @version: 1.0
|
|
|
|
|
*/
|
|
|
|
|
public class GradeController {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public GradeWrapper getGradeWrapper(User user) {
|
|
|
|
|
return ServiceUtil.getService(GradeWrapper.class, user);
|
|
|
|
|
}
|
|
|
|
@ -166,6 +168,7 @@ public class GradeController {
|
|
|
|
|
try {
|
|
|
|
|
User user = HrmUserVarify.getUser(request, response);
|
|
|
|
|
Map<String, Object> map = ParamUtil.request2Map(request);
|
|
|
|
|
//String s = Util.null2String(map.get(ParamConstant.PARAM_IP));
|
|
|
|
|
return ReturnResult.successed(getGradeWrapper(user).getGradeForm(map));
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
return ReturnResult.exceptionHandle(e);
|
|
|
|
|