liurunyu
7 天以前 f4faf482bcfab63425c9aff0862ad828d71d85a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.dy.pipIrrGlobal.daoRm;
 
import com.dy.pipIrrGlobal.pojoRm.RmSoilDay;
import com.dy.pipIrrGlobal.pojoRm.RmSoilLast;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @Author: liurunyu
 * @Date: 2025/6/25 10:04
 * @Description
 */
public interface RmSoilDayMapper {
    int deleteByPrimaryKey(Long id);
 
    int insert(RmSoilDay record);
 
    int insertSelective(RmSoilDay record);
 
    RmSoilDay selectByPrimaryKey(Long id);
 
    List<RmSoilDay> selectRmSoilDay(@Param("stSoilId") Long stSoilId, @Param("ymd") Integer ymd) ;
 
    int updateByPrimaryKeySelective(RmSoilDay record);
 
    int updateByPrimaryKey(RmSoilDay record);
}