package com.ots.project.exam.mapper;
|
|
import com.ots.project.exam.domain.EntEmailTemplate;
|
|
public interface EntEmailTemplateMapper {
|
int deleteByPrimaryKey(Integer id);
|
|
int insert(EntEmailTemplate record);
|
|
int insertSelective(EntEmailTemplate record);
|
|
EntEmailTemplate selectByPrimaryKey(Integer id);
|
|
int updateByPrimaryKeySelective(EntEmailTemplate record);
|
|
int updateByPrimaryKey(EntEmailTemplate record);
|
|
EntEmailTemplate getOnly();
|
}
|