zouyu
2025-10-23 d425460023114e81caedc7a0430f9246ed3bb839
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.inspect.service;
 
import com.ruoyi.inspect.dto.IfsPartPropsRecordDTO;
import com.ruoyi.inspect.pojo.IfsPartPropsRecord;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
* @author 27233
* @description 针对表【ifs_part_props_record(ifs订单零件属性记录表)】的数据库操作Service
* @createDate 2025-10-23 15:00:34
*/
public interface IfsPartPropsRecordService extends IService<IfsPartPropsRecord> {
 
    boolean saveOrUpdateProps(IfsPartPropsRecordDTO ifsPartPropsRecord);
 
    IfsPartPropsRecord getOneByIfsId(Long ifsId);
}