Commit 02f9d1bc by 徐高华

朋友圈

parent eb4dd092
...@@ -130,6 +130,7 @@ public class QwMomentController { ...@@ -130,6 +130,7 @@ public class QwMomentController {
} }
vo.setMaterialTitle(obj.getString("title")); vo.setMaterialTitle(obj.getString("title"));
vo.setMaterialContent(obj.getString("contentText")); vo.setMaterialContent(obj.getString("contentText"));
vo.setContentMaterialId(obj.getString("materialId"));
list.add(vo); list.add(vo);
} }
} }
......
...@@ -31,6 +31,19 @@ public class TaskMaterialVO implements Serializable { ...@@ -31,6 +31,19 @@ public class TaskMaterialVO implements Serializable {
*/ */
private String materialTitle; private String materialTitle;
/**
* 内容素材ID
*/
private String contentMaterialId ;
public String getContentMaterialId() {
return contentMaterialId;
}
public void setContentMaterialId(String contentMaterialId) {
this.contentMaterialId = contentMaterialId;
}
public Integer getMaterialType() { public Integer getMaterialType() {
return materialType; return materialType;
} }
......
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