| | |
| | | package com.sinata.system.service; |
| | | |
| | | import com.sinata.common.entity.PageDTO; |
| | | import com.sinata.system.domain.MwTransitCarAnnualInspection; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.sinata.system.domain.dto.MwTransitCarAnnualInspectionDTO; |
| | | import com.sinata.system.domain.query.MwTransitCarAnnualInspectionQuery; |
| | | import com.sinata.system.domain.vo.MwTransitCarAnnualInspectionVO; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2024-12-02 |
| | | */ |
| | | public interface MwTransitCarAnnualInspectionService extends IService<MwTransitCarAnnualInspection> { |
| | | /** |
| | | * 年检记录分页列表 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageDTO<MwTransitCarAnnualInspectionVO> pageList(MwTransitCarAnnualInspectionQuery query); |
| | | |
| | | /** |
| | | * 新增年检记录 |
| | | * |
| | | * @param dto |
| | | */ |
| | | void add(MwTransitCarAnnualInspectionDTO dto); |
| | | |
| | | /** |
| | | * 编辑年检记录 |
| | | * |
| | | * @param dto |
| | | * @return |
| | | */ |
| | | void edit(MwTransitCarAnnualInspectionDTO dto); |
| | | |
| | | /** |
| | | * 详情 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MwTransitCarAnnualInspectionVO detail(Long id); |
| | | } |