审查视图

src/main/java/com/sy/mapper/commandLogMapper.java 366 字节
xudada authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.sy.mapper;

import com.sy.model.commandLog;

public interface commandLogMapper {
    int deleteByPrimaryKey(String id);

    int insert(commandLog record);

    int insertSelective(commandLog record);

    commandLog selectByPrimaryKey(String id);

    int updateByPrimaryKeySelective(commandLog record);

    int updateByPrimaryKey(commandLog record);
}