审查视图

src/main/java/com/sy/mapper/GatherInfoMapper.java 432 字节
zhangFan authored
1 2 3
package com.sy.mapper;

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

    int insert(GatherInfo record);

    int insertSelective(GatherInfo record);

    GatherInfo selectByPrimaryKey(String seqno);

    int updateByPrimaryKeySelective(GatherInfo record);

    int updateByPrimaryKey(GatherInfo record);
}