| | |
| | | import com.ycl.common.base.Result; |
| | | import com.ycl.domain.entity.ProjectPlanInfo; |
| | | import com.ycl.domain.form.ProjectPlanInfoForm; |
| | | import com.ycl.domain.form.ProjectPlanInfoRequestForm; |
| | | import com.ycl.domain.query.ProjectPlanInfoQuery; |
| | | import com.ycl.domain.vo.ProjectPlanInfoRequest; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | Result detail(Integer id); |
| | | Result detail(Long id); |
| | | |
| | | /** |
| | | * 新增计划项 |
| | |
| | | * 新增计划项 |
| | | * @return |
| | | */ |
| | | Result addPlanInfo(ProjectPlanInfoRequest request); |
| | | Result addPlanInfo(ProjectPlanInfoRequestForm form); |
| | | |
| | | /** |
| | | * 保存计划项 |
| | | * @return |
| | | */ |
| | | Result savePlanInfo(ProjectPlanInfo item, Integer planRecordId); |
| | | Result savePlanInfo(ProjectPlanInfoForm item, Long planRecordId); |
| | | |
| | | /** |
| | | * 延期 |