|
|
@@ -165,7 +165,7 @@ public class Users extends Controller {
|
|
|
if (!queryPaoSetRemote.isEmpty()) {
|
|
|
PaoRemote remote = queryPaoSetRemote.getPao(0);
|
|
|
String fstatus = remote.getString("fstatus");
|
|
|
- if (fstatus.equals("新建")) {
|
|
|
+ if (fstatus.equals("申请")) {
|
|
|
return getErrReturnObject().setErrCode(2).setErrMsg("正在申请中").toString();
|
|
|
} else if (fstatus.equals("审核")) {
|
|
|
return getErrReturnObject().setErrCode(3).setErrMsg("已通过申请").toString();
|
|
|
@@ -191,7 +191,7 @@ public class Users extends Controller {
|
|
|
paoRemote.setValue("TENTERPRISE_USERID", userid, 11L);
|
|
|
paoRemote.setValue("TAGENTSID", tagentsid, 11L);
|
|
|
paoRemote.setValue("FNAME", fname, 11L);
|
|
|
- paoRemote.setValue("FSTATUS", "新建", 11L);
|
|
|
+ paoRemote.setValue("FSTATUS", "申请", 11L);
|
|
|
paoRemote.setValue("FUSERID", userid, 11L);
|
|
|
queryPaoSetRemote.save();
|
|
|
|