jinpengyong
2020-05-07 66fd957202742202804a614c766b9b973a26d836
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
package com.moral.mapper;
 
import com.moral.entity.DeviceAdjustValue;
 
import java.util.List;
import org.apache.ibatis.annotations.Param;
import tk.mybatis.mapper.entity.Example;
 
public interface DeviceAdjustValueMapper{
 
    int deleteByPrimaryKey(Integer id);
 
    int insert(DeviceAdjustValue record);
 
    int insertSelective(DeviceAdjustValue record);
 
 
    DeviceAdjustValue selectByPrimaryKey(Integer id);
 
    DeviceAdjustValue selectByDeviceId(Integer id);
 
    int updateByPrimaryKeySelective(DeviceAdjustValue record);
 
    int updateByPrimaryKey(DeviceAdjustValue record);
}