123456789101112131415161718 |
- package com.hssx.cloudmodel.service;
- import com.hssx.cloudmodel.entity.MouldHistory;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.hssx.cloudmodel.util.HttpRespMsg;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author 吴涛涛
- * @since 2019-10-11
- */
- public interface MouldHistoryService extends IService<MouldHistory> {
- HttpRespMsg getOpeningAndClosingTimesChart(String equipmentNo, String time);
- }
|