fengxiang
2018-05-16 5fa78e073c5c6269997e7d03b56176b157c7a327
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);
}