李旭东
2023-10-27 2d8dafdddd85653371e463ee43f960f2366d9313
hd/pipe/engineeringManage/src/main/java/com/thhy/engineering/modules/biz/moldquality/mapper/MoldQualityMapper.java
对比新文件
@@ -0,0 +1,34 @@
package com.thhy.engineering.modules.biz.moldquality.mapper;
import com.thhy.engineering.modules.biz.moldquality.entity.MoldQualityEntity;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
import java.util.Map;
/**
 * @Author QiuYuHao
 * @CreateDate 2023-10-25 15:03:34
 * 模具质量检测mapper
 */
@Mapper
public interface MoldQualityMapper {
   void insert(MoldQualityEntity moldQualityEntity);
   MoldQualityEntity findNewOne();
   void delete(Integer id);
   void update(MoldQualityEntity moldQualityEntity);
   List<MoldQualityEntity> findAll(Map<String,Object> map);
   MoldQualityEntity findOneById(Integer id);
   List<Map> getMoldNum(String proId);
   List<Map> getMoldCode(Map<String, Object> map);
   Map getMoldByProIdAndModNumAndModCode(Map<String,Object> map);
}