审查视图

src/main/java/com/sy/mapper/messageheadMapper.java 447 字节
1 2 3
package com.sy.mapper;

import com.sy.model.messagehead;
zhangFan authored
4
import org.springframework.stereotype.Component;
5
zhangFan authored
6
@Component
7 8 9 10 11 12 13 14 15 16 17 18 19
public interface messageheadMapper {
    int deleteByPrimaryKey(String messageid);

    int insert(messagehead record);

    int insertSelective(messagehead record);

    messagehead selectByPrimaryKey(String messageid);

    int updateByPrimaryKeySelective(messagehead record);

    int updateByPrimaryKey(messagehead record);
}