| | |
| | | import com.ycl.domain.entity.ProjectPlanInfo; |
| | | import com.ycl.domain.form.ProjectPlanInfoForm; |
| | | import com.ycl.domain.query.ProjectPlanInfoQuery; |
| | | import com.ycl.domain.vo.ProjectPlanInfoRequest; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | Result detail(Integer id); |
| | | |
| | | /** |
| | | * 列表 |
| | | * 新增计划项 |
| | | * @return |
| | | */ |
| | | Result all(); |
| | | |
| | | /** |
| | | * 新增计划项 |
| | | * @return |
| | | */ |
| | | Result addPlanInfo(ProjectPlanInfoRequest request); |
| | | |
| | | /** |
| | | * 保存计划项 |
| | | * @return |
| | | */ |
| | | Result savePlanInfo(ProjectPlanInfo item, Integer planRecordId); |
| | | |
| | | /** |
| | | * 延期 |
| | | * @return |
| | | */ |
| | | Result delayPlanInfo(ProjectPlanInfoForm request); |
| | | |
| | | Result resubmitPlanInfo(ProjectPlanInfoForm form); |
| | | } |