ZhuDongming
2019-08-15 f1c8a918c9e5ff4c91748269ae837d8f17c28511
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);
}