3 changed files with 34 additions and 11 deletions
-
11xm-core/src/main/java/com/xm/core/ctrl/XmProjectController.java
-
19xm-core/src/main/java/com/xm/core/service/XmProjectService.java
-
15xm-core/src/main/java/com/xm/core/vo/XmProjectVo.java
@ -1,20 +1,19 @@ |
|||
package com.xm.core.vo; |
|||
|
|||
import com.xm.core.entity.XmProductProjectLink; |
|||
import com.xm.core.entity.XmProject; |
|||
|
|||
import java.util.List; |
|||
|
|||
public class XmProjectVo extends XmProject { |
|||
|
|||
List<XmGroupVo> groups; |
|||
|
|||
|
|||
|
|||
public List<XmGroupVo> getGroups() { |
|||
return groups; |
|||
List<XmProductProjectLink> links; |
|||
|
|||
public List<XmProductProjectLink> getLinks() { |
|||
return links; |
|||
} |
|||
|
|||
public void setGroups(List<XmGroupVo> groups) { |
|||
this.groups = groups; |
|||
public void setLinks(List<XmProductProjectLink> links) { |
|||
this.links = links; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue