13 lines
350 B
Java
13 lines
350 B
Java
|
|
package com.gunshi.project.xyt.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.gunshi.project.xyt.model.SoilMoistureData;
|
||
|
|
import com.gunshi.project.xyt.model.SoilMoistureStation;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*/
|
||
|
|
@Mapper
|
||
|
|
public interface SoilMoistureDataMapper extends BaseMapper<SoilMoistureData> {
|
||
|
|
|
||
|
|
}
|