Commit a366b911 authored by 赵啸非's avatar 赵啸非

更新申报次数

parent 89acb2fd
...@@ -35,5 +35,7 @@ public class DeclareVo extends BaseEntityLong { ...@@ -35,5 +35,7 @@ public class DeclareVo extends BaseEntityLong {
/** 结束 创建时间 */ /** 结束 创建时间 */
private String createTimeEnd; private String createTimeEnd;
private String phone;
} }
\ No newline at end of file
...@@ -72,6 +72,9 @@ public class DeclareServiceImpl extends AbstractCRUDServiceImpl<DeclareDao, Decl ...@@ -72,6 +72,9 @@ public class DeclareServiceImpl extends AbstractCRUDServiceImpl<DeclareDao, Decl
@Override @Override
protected void findAfter(DeclareEntity params, Context context, List<DeclareEntity> list) throws AppException { protected void findAfter(DeclareEntity params, Context context, List<DeclareEntity> list) throws AppException {
fillSubData(list); fillSubData(list);
super.findAfter(params, context, list); super.findAfter(params, context, list);
} }
......
...@@ -47,6 +47,7 @@ public class LoginController extends BaseCRUDJsonBodyMappingController<UserServi ...@@ -47,6 +47,7 @@ public class LoginController extends BaseCRUDJsonBodyMappingController<UserServi
String loginName = loginForm.getLoginName(); String loginName = loginForm.getLoginName();
UserPdu loginPdu = new UserPdu(); UserPdu loginPdu = new UserPdu();
loginPdu.setLoginName(loginName); loginPdu.setLoginName(loginName);
loginPdu.setLoginPwd(loginForm.getPassword());
String resp = userFeign.portalLogin(loginPdu); String resp = userFeign.portalLogin(loginPdu);
log.info("loginName:{},resp:{}", loginName, resp); log.info("loginName:{},resp:{}", loginName, resp);
return resp; return resp;
......
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