| | |
| | | package com.iailab.module.model.mcs.sche.service; |
| | | |
| | | import com.iailab.framework.common.pojo.PageResult; |
| | | import com.iailab.framework.common.service.BaseService; |
| | | import com.iailab.module.model.mcs.sche.entity.StScheduleModelEntity; |
| | | import com.iailab.module.model.mcs.sche.vo.StScheduleModelPageReqVO; |
| | | import com.iailab.module.model.mcs.sche.vo.StScheduleModelSaveReqVO; |
| | |
| | | * @author PanZhibao |
| | | * @date 2021年07月20日 14:13 |
| | | */ |
| | | public interface StScheduleModelService extends BaseService<StScheduleModelEntity> { |
| | | public interface StScheduleModelService { |
| | | |
| | | PageResult<StScheduleModelEntity> page(StScheduleModelPageReqVO reqVO); |
| | | |
| | |
| | | Long check(StScheduleModelSaveReqVO reqVO); |
| | | |
| | | Long count(); |
| | | |
| | | StScheduleModelEntity getByModelCode(String modelCode); |
| | | } |