dataease-dm/backend/src/main/java/io/dataease/base/mapper/ProjectMapper.java
2021-02-20 10:23:37 +08:00

31 lines
852 B
Java

package io.dataease.base.mapper;
import io.dataease.base.domain.Project;
import io.dataease.base.domain.ProjectExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface ProjectMapper {
long countByExample(ProjectExample example);
int deleteByExample(ProjectExample example);
int deleteByPrimaryKey(String id);
int insert(Project record);
int insertSelective(Project record);
List<Project> selectByExample(ProjectExample example);
Project selectByPrimaryKey(String id);
int updateByExampleSelective(@Param("record") Project record, @Param("example") ProjectExample example);
int updateByExample(@Param("record") Project record, @Param("example") ProjectExample example);
int updateByPrimaryKeySelective(Project record);
int updateByPrimaryKey(Project record);
}