YYC
2023-06-27 1f2c3a31d9652b5d07f852b6d8d2b1b378adcfc2
1
2
3
4
5
6
7
8
9
10
package com.ld.igds.pressure.mapper;
 
 
import com.ld.igds.pressure.dto.PressureData;
import org.apache.ibatis.annotations.Param;
 
public interface PressureServiceMapper {
 
    void savePressure(@Param("data") PressureData pressure);
}