审查视图

src/main/java/com/sy/mapper/commandInfoMapper.java 439 字节
1 2 3
package com.sy.mapper;

import com.sy.model.commandInfo;
zhangFan authored
4
import org.springframework.stereotype.Component;
5
zhangFan authored
6
@Component
7
public interface commandInfoMapper {
zhangFan authored
8 9 10
    int deleteByPrimaryKey(String seqNo);

    int insert(commandInfo record);
11 12

    int insertSelective(commandInfo record);
zhangFan authored
13 14 15 16 17 18

    commandInfo selectByPrimaryKey(String seqNo);

    int updateByPrimaryKeySelective(commandInfo record);

    int updateByPrimaryKey(commandInfo record);
19
}