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
package com.dy.pipIrrGlobal.daoRm;
 
import com.dy.pipIrrGlobal.pojoRm.RmWeatherHistory;
 
/**
 * @Author: liurunyu
 * @Date: 2025/6/25 10:39
 * @Description
 */
public interface RmWeatherHistoryMapper {
    int deleteByPrimaryKey(Long id);
 
    int insert(RmWeatherHistory record);
 
    int insertSelective(RmWeatherHistory record);
 
    RmWeatherHistory selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(RmWeatherHistory record);
 
    int updateByPrimaryKey(RmWeatherHistory record);
}