23 lines
466 B
Java
23 lines
466 B
Java
package com.sv.mapper;
|
|
|
|
import com.sv.entity.HealthDoc;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
public interface HealthDocMapper {
|
|
int deleteByPrimaryKey(Integer id);
|
|
|
|
int insert(HealthDoc record);
|
|
|
|
int insertSelective(HealthDoc record);
|
|
|
|
HealthDoc selectByPrimaryKey(Integer id);
|
|
|
|
int updateByPrimaryKeySelective(HealthDoc record);
|
|
|
|
int updateByPrimaryKey(HealthDoc record);
|
|
|
|
List<HealthDoc> findMemAll();
|
|
}
|