| | |
| | | */ |
| | | package org.springblade.modules.applicationCarChange.service; |
| | | |
| | | import org.springblade.flow.core.entity.BladeFlow; |
| | | import org.springblade.modules.application.entity.CarEntity; |
| | | import org.springblade.modules.applicationCarChange.entity.ApplicationCarChangeEntity; |
| | | import org.springblade.modules.applicationCarChange.vo.ApplicationCarChangeVO; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.modules.applicationDelay.vo.ApplicationDelayVO; |
| | | |
| | | /** |
| | | * 车辆变更申请表 服务类 |
| | |
| | | */ |
| | | IPage<ApplicationCarChangeVO> selectApplicationCarChangePage(IPage<ApplicationCarChangeVO> page, ApplicationCarChangeVO applicationCarChange); |
| | | |
| | | /** |
| | | * 开始任务 |
| | | * @param entity |
| | | * @return |
| | | */ |
| | | Boolean startProcess(ApplicationCarChangeEntity entity, CarEntity carEntity); |
| | | |
| | | /** |
| | | * 完成任务 |
| | | * @param flow |
| | | * @return |
| | | */ |
| | | Boolean completeTask(BladeFlow flow); |
| | | |
| | | /** |
| | | * 获取详情 |
| | | * @param detail |
| | | * @return |
| | | */ |
| | | ApplicationCarChangeVO getVo(ApplicationCarChangeEntity detail); |
| | | } |