File was renamed from business/src/main/java/com/ycl/service/ProjectCodingStatusService.java |
| | |
| | | package com.ycl.service; |
| | | |
| | | import com.ycl.domain.entity.ProjectCodingStatus; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.common.base.Result; |
| | | import com.ycl.domain.form.ProjectCodingStatusForm; |
| | | import com.ycl.domain.query.ProjectCodingStatusQuery; |
| | | import com.ycl.domain.entity.ProjectOvertimeTimes; |
| | | import com.ycl.domain.form.ProjectOvertimeTimesForm; |
| | | import com.ycl.domain.query.ProjectOvertimeTimesQuery; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @author zxl |
| | | * @since 2025-04-01 |
| | | */ |
| | | public interface ProjectCodingStatusService extends IService<ProjectCodingStatus> { |
| | | public interface ProjectOvertimeTimesService extends IService<ProjectOvertimeTimes> { |
| | | |
| | | /** |
| | | * 添加 |
| | | * @param form |
| | | * @return |
| | | */ |
| | | Result add(ProjectCodingStatusForm form); |
| | | Result add(ProjectOvertimeTimesForm form); |
| | | |
| | | /** |
| | | * 修改 |
| | | * @param form |
| | | * @return |
| | | */ |
| | | Result update(ProjectCodingStatusForm form); |
| | | Result update(ProjectOvertimeTimesForm form); |
| | | |
| | | /** |
| | | * 批量删除 |
| | |
| | | * @param query |
| | | * @return |
| | | */ |
| | | Result page(ProjectCodingStatusQuery query); |
| | | Result page(ProjectOvertimeTimesQuery query); |
| | | |
| | | /** |
| | | * 根据id查找 |