fengxiang
2018-01-25 56e81073389ebb511562ddf85e1b22a8db0585a9
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);
}