| | |
| | | package com.iailab.module.model.mcs.sche.service; |
| | | |
| | | import com.iailab.framework.common.page.PageData; |
| | | import com.iailab.framework.common.pojo.PageResult; |
| | | import com.iailab.framework.common.service.BaseService; |
| | | import com.iailab.module.model.mcs.sche.dto.StScheduleModelDto; |
| | | import com.iailab.module.model.mcs.sche.entity.StScheduleModelEntity; |
| | | import com.iailab.module.model.mcs.sche.vo.StScheduleModelRespVO; |
| | | import com.iailab.module.model.mcs.sche.vo.StScheduleModelPageReqVO; |
| | | import com.iailab.module.model.mcs.sche.vo.StScheduleModelSaveReqVO; |
| | | |
| | | import java.util.Map; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | | * @date 2021年07月20日 14:13 |
| | | */ |
| | | public interface StScheduleModelService extends BaseService<StScheduleModelEntity> { |
| | | public interface StScheduleModelService { |
| | | |
| | | void saveStScheduleModel(StScheduleModelDto stScheduleModel); |
| | | PageResult<StScheduleModelEntity> page(StScheduleModelPageReqVO reqVO); |
| | | |
| | | StScheduleModelDto getDetailById(String id); |
| | | List<StScheduleModelEntity> list(); |
| | | |
| | | void update(StScheduleModelDto stScheduleModel); |
| | | void create(StScheduleModelSaveReqVO reqVO); |
| | | |
| | | void deleteBatch(String[] stScheduleModelIds); |
| | | void update(StScheduleModelSaveReqVO reqVO); |
| | | |
| | | int check(StScheduleModelEntity stScheduleModel); |
| | | StScheduleModelEntity get(String id); |
| | | |
| | | PageResult<StScheduleModelRespVO> getPageList(Map<String, Object> params); |
| | | void delete(String id); |
| | | |
| | | Long check(StScheduleModelSaveReqVO reqVO); |
| | | |
| | | Long count(); |
| | | } |