industrial_measurement/src/main/java/com/xkrs/dao/QcInspectionPictureDao.java

53 lines
2.2 KiB
Java
Raw Normal View History

2022-02-12 08:48:57 +08:00
package com.xkrs.dao;
2022-02-28 13:55:17 +08:00
import com.xkrs.model.entity.QcInspectionFile;
import com.xkrs.model.entity.QcInspectionPicture;
2022-02-12 08:48:57 +08:00
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.stereotype.Component;
@Component
2022-02-28 13:55:17 +08:00
public interface QcInspectionPictureDao extends JpaRepository<QcInspectionPicture, Long>, JpaSpecificationExecutor<QcInspectionPicture> {
2022-02-12 08:48:57 +08:00
/**
* 根据机种号批次号机器号产品号查询文件信息
2022-02-28 13:55:17 +08:00
*
2022-02-12 08:48:57 +08:00
* @param fileModelNumber
* @param fileBatchNumber
* @param fileMachineCode
* @param fileProductNumber
* @return
*/
2022-02-28 13:55:17 +08:00
QcInspectionFile findByFileModelNumberAndFileBatchNumberAndFileMachineCodeAndFileProductNumber(String fileModelNumber, String fileBatchNumber, String fileMachineCode, String fileProductNumber);
2022-02-12 08:48:57 +08:00
/**
* 根据机种号批次号机器号产品号修改模板上传信息
2022-02-28 13:55:17 +08:00
*
2022-02-12 08:48:57 +08:00
* @param fileModelNumber
* @param fileBatchNumber
* @param fileMachineCode
* @param fileProductNumber
* @param fileUploadPath
*/
2022-02-28 13:55:17 +08:00
@Modifying(clearAutomatically = true)
@Query(value = "update file set file_upload_path = ?5 where file_model_number = ?1 and file_batch_number = ?2 and file_machine_code = ?3 and file_product_number = ?4", nativeQuery = true)
void updateFileUploadPath(String fileModelNumber, String fileBatchNumber, String fileMachineCode, String fileProductNumber, String fileUploadPath);
2022-02-12 08:48:57 +08:00
/**
2022-02-28 13:55:17 +08:00
* 根据机种号批次号机器号产品号修改模板载下信息
*
2022-02-12 08:48:57 +08:00
* @param fileModelNumber
* @param fileBatchNumber
* @param fileMachineCode
* @param fileProductNumber
* @param fileDownloadPath
*/
2022-02-28 13:55:17 +08:00
@Modifying(clearAutomatically = true)
@Query(value = "update file set file_download_path = ?5 where file_model_number = ?1 and file_batch_number = ?2 and file_machine_code = ?3 and file_product_number = ?4", nativeQuery = true)
void updateFileDownloadPath(String fileModelNumber, String fileBatchNumber, String fileMachineCode, String fileProductNumber, String fileDownloadPath);
2022-02-12 08:48:57 +08:00
}