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);
|
}
|