/*
|
* Copyright (c) 2018-2025, ztt All rights reserved.
|
*
|
* Redistribution and use in source and binary forms, with or without
|
* modification, are permitted provided that the following conditions are met:
|
*
|
* Redistributions of source code must retain the above copyright notice,
|
* this list of conditions and the following disclaimer.
|
* Redistributions in binary form must reproduce the above copyright
|
* notice, this list of conditions and the following disclaimer in the
|
* documentation and/or other materials provided with the distribution.
|
* Neither the name of the pig4cloud.com developer nor the names of its
|
* contributors may be used to endorse or promote products derived from
|
* this software without specific prior written permission.
|
* Author: ztt
|
*/
|
|
package com.chinaztt.mes.plan.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.chinaztt.mes.basic.entity.Template;
|
import com.chinaztt.mes.plan.dto.ManufacturingOrderOperationTemplateDTO;
|
import com.chinaztt.mes.plan.entity.ManufacturingOrderOperationTemplate;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* 制造订单复制工序模板
|
*
|
* @author sunxl
|
* @date 2021-04-01 08:36:32
|
*/
|
@Mapper
|
public interface ManufacturingOrderOperationTemplateMapper extends BaseMapper<ManufacturingOrderOperationTemplate> {
|
/**
|
* 根据工序模板复制对应的工序模板
|
*
|
* @param id
|
* @param generateNumberWithPrefix
|
* @param id1
|
* @return
|
*/
|
void copy(@Param("id") Long id,@Param("id1")Long id1, @Param("no") String generateNumberWithPrefix);
|
/**
|
* 通过id查询工单所关联的模板和参数
|
*
|
* @param id
|
* @return
|
*/
|
List<ManufacturingOrderOperationTemplateDTO> getTemplate(Long id);
|
}
|