liurunyu
2024-11-12 046a1118a456bfc9a7eca1bf06b7a6e95c94c120
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmCommandHistoryMapper.java
@@ -2,9 +2,9 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoRm.RmCommandHistory;
import com.dy.pipIrrGlobal.voRm.VoCommand;
import com.dy.pipIrrGlobal.voRm.VoUnclosedParam;
import com.dy.pipIrrGlobal.voRm.VoUnclosedValve;
import com.dy.pipIrrGlobal.voRm.VoCommand;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@@ -13,20 +13,20 @@
/**
 * @author ZhuBaoMin
 * @date 2024-05-24 10:46
 * @LastEditTime 2024-05-24 10:46
 * @date 2024-07-17 10:31
 * @LastEditTime 2024-07-17 10:31
 * @Description
 */
@Mapper
public interface RmCommandHistoryMapper extends BaseMapper<RmCommandHistory> {
    int deleteByPrimaryKey(Long id);
    int deleteByPrimaryKey(Long comId);
    int insert(RmCommandHistory record);
    int insertSelective(RmCommandHistory record);
    RmCommandHistory selectByPrimaryKey(Long id);
    RmCommandHistory selectByPrimaryKey(Long comId);
    int updateByPrimaryKeySelective(RmCommandHistory record);
@@ -60,4 +60,11 @@
     * @return
     */
    List<VoCommand> getCommandHistories(Map<?, ?> params);
    /**
     * 根据命令日志ID获取预约时间,向虚拟卡写开阀时间用
     * @param commId
     * @return
     */
    String getTimeByCommId(Long commId);
}