Przeglądaj źródła

消息详情BUG修复

anderx 7 lat temu
rodzic
commit
f989bd5857

+ 1 - 1
src/main/java/com/goafanti/app/controller/AppUserController.java

@@ -61,7 +61,7 @@ import com.goafanti.user.service.UserInterestService;
 import com.goafanti.user.service.UserService;
 
 @RestController
-@RequestMapping(value = "/app/user")
+@RequestMapping(value = "/open/user")
 public class AppUserController extends CertifyApiController {
 	@Resource
 	private UserService userServiceImpl;

+ 7 - 0
src/main/java/com/goafanti/message/bo/AppMessageBo.java

@@ -5,6 +5,7 @@ import java.util.Date;
 public class AppMessageBo {
 	private String id;
 	private String title;
+	private String body;
 	private Date createTime;
 	private Boolean isRead ;
 	public String getId() {
@@ -31,5 +32,11 @@ public class AppMessageBo {
 	public void setIsRead(Boolean isRead) {
 		this.isRead = isRead;
 	}
+	public String getBody() {
+		return body;
+	}
+	public void setBody(String body) {
+		this.body = body;
+	}
 	
 }