|
@@ -156,10 +156,10 @@ public class UserController extends AppBaseController {
|
|
|
FsDoctor doctor= doctorService.selectFsDoctorByUserId(Long.parseLong(getUserId()));
|
|
|
if(doctor!=null){
|
|
|
if(doctor.getIsAudit().equals(0)){
|
|
|
- return R.error("您已提交申请,等待审核...");
|
|
|
+ return R.error(String.format("您已提交申请: %s,等待审核...",doctor.getDoctorName()));
|
|
|
}
|
|
|
else if(doctor.getIsAudit().equals(1)){
|
|
|
- return R.error("您已提交申请");
|
|
|
+ return R.error(String.format("您已提交过申请 提交信息: %s",doctor.getDoctorName()));
|
|
|
}
|
|
|
}
|
|
|
doctor=new FsDoctor();
|