GatherInfoMapper.java
432 字节
package com.sy.mapper;
import com.sy.model.GatherInfo;
import org.springframework.stereotype.Component;
@Component
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);
}