6 changed files with 52 additions and 30 deletions
-
20xm-core/src/main/java/com/xm/core/ctrl/XmIterationController.java
-
15xm-core/src/main/java/com/xm/core/service/XmIterationService.java
-
20xm-core/src/main/java/com/xm/core/vo/XmIterationVo.java
-
14xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmIterationMapper.xml
-
2xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmProductProjectLinkMapper.xml
-
5xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmProjectMapper.xml
@ -1,21 +1,21 @@ |
|||
package com.xm.core.vo; |
|||
|
|||
import com.xm.core.entity.XmIteration; |
|||
import com.xm.core.entity.XmIterationLink; |
|||
|
|||
import java.util.List; |
|||
|
|||
public class XmIterationVo extends XmIteration { |
|||
private static final long serialVersionUID = 1534268338972176747L; |
|||
|
|||
/** |
|||
* addSub,edit,delete |
|||
*/ |
|||
String opType=""; |
|||
|
|||
public String getOpType() { |
|||
return opType; |
|||
} |
|||
|
|||
public void setOpType(String opType) { |
|||
this.opType = opType; |
|||
List<XmIterationLink> links; |
|||
|
|||
public List<XmIterationLink> getLinks() { |
|||
return links; |
|||
} |
|||
|
|||
public void setLinks(List<XmIterationLink> links) { |
|||
this.links = links; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue