xiangpei
2025-03-26 f9504e80579c35586c2adb0f2e4a384d31aac22f
business/src/main/java/com/ycl/service/ProjectPlanExamineRecordService.java
@@ -5,6 +5,8 @@
import com.ycl.common.base.Result;
import com.ycl.domain.form.ProjectPlanExamineRecordForm;
import com.ycl.domain.query.ProjectPlanExamineRecordQuery;
import com.ycl.domain.form.ProgressReportResponseForm;
import java.util.List;
/**
@@ -55,7 +57,7 @@
     * @param id
     * @return
     */
    Result detail(Integer id);
    Result detail(Long id);
    /**
     * 列表
@@ -68,14 +70,14 @@
     * @param projectPlanRecordId
     * @return
     */
    Result departmentApproval(Integer projectPlanRecordId);
    Result departmentApproval(Long projectPlanRecordId);
    /**
     *  计划日志
     * @param projectPlanRecordId
     * @return
     */
    Result planLog(Integer projectPlanRecordId);
    Result planLog(Long projectPlanRecordId);
    /**
     *  回复审批
@@ -90,4 +92,8 @@
     * @return
     */
    Result saveExamine(ProjectPlanExamineRecordForm form);
    Result todoList(Long userId,ProjectPlanExamineRecordQuery query);
    Result reply(ProgressReportResponseForm form);
}