You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main/main/java/com/esms/dao/KeyValueMapper.java

19 lines
399 B

package com.esms.dao;
import com.esms.po.KeyValue;
public interface KeyValueMapper {
int deleteByPrimaryKey(Integer kvId);
int insert(KeyValue record);
int insertSelective(KeyValue record);
KeyValue selectByPrimaryKey(Integer kvId);
int updateByPrimaryKeySelective(KeyValue record);
int updateByPrimaryKey(KeyValue record);
KeyValue selectBykvKey(String kvKey);
}