| | |
| | | package com.ycl.service; |
| | | |
| | | import com.ycl.domain.entity.ProjectPlanExamineRecord; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.common.base.Result; |
| | | import com.ycl.domain.entity.ProjectPlanExamineRecord; |
| | | import com.ycl.domain.form.ProjectPlanExamineRecordForm; |
| | | import com.ycl.domain.query.ProjectPlanExamineRecordQuery; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | Result all(); |
| | | |
| | | /** |
| | | * 上级批复 |
| | | * @param projectPlanRecordId |
| | | * @return |
| | | */ |
| | | Result departmentApproval(Integer projectPlanRecordId); |
| | | |
| | | /** |
| | | * 计划日志 |
| | | * @param projectPlanRecordId |
| | | * @return |
| | | */ |
| | | Result planLog(Integer projectPlanRecordId); |
| | | |
| | | /** |
| | | * 回复审批 |
| | | * @param form |
| | | * @return |
| | | */ |
| | | Result replyExamine(ProjectPlanExamineRecordForm form); |
| | | |
| | | /** |
| | | * 保存审批 |
| | | * @param form |
| | | * @return |
| | | */ |
| | | Result saveExamine(ProjectPlanExamineRecordForm form); |
| | | } |