forked from sd_delivery/delivery
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
914 B
30 lines
914 B
package com.ccsens.delivery.persist.mapper;
|
|
|
|
import com.ccsens.delivery.bean.po.FileCommit;
|
|
import com.ccsens.delivery.bean.po.FileCommitExample;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
public interface FileCommitMapper {
|
|
long countByExample(FileCommitExample example);
|
|
|
|
int deleteByExample(FileCommitExample example);
|
|
|
|
int deleteByPrimaryKey(Long id);
|
|
|
|
int insert(FileCommit record);
|
|
|
|
int insertSelective(FileCommit record);
|
|
|
|
List<FileCommit> selectByExample(FileCommitExample example);
|
|
|
|
FileCommit selectByPrimaryKey(Long id);
|
|
|
|
int updateByExampleSelective(@Param("record") FileCommit record, @Param("example") FileCommitExample example);
|
|
|
|
int updateByExample(@Param("record") FileCommit record, @Param("example") FileCommitExample example);
|
|
|
|
int updateByPrimaryKeySelective(FileCommit record);
|
|
|
|
int updateByPrimaryKey(FileCommit record);
|
|
}
|