6 changed files with 38 additions and 28 deletions
@ -1,30 +1,30 @@ |
|||
package com.ccsens.tcm.persist.mapper; |
|||
|
|||
import com.ccsens.tcm.bean.po.patientRecord; |
|||
import com.ccsens.tcm.bean.po.patientRecordExample; |
|||
import com.ccsens.tcm.bean.po.PatientRecord; |
|||
import com.ccsens.tcm.bean.po.PatientRecordExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface patientRecordMapper { |
|||
long countByExample(patientRecordExample example); |
|||
public interface PatientRecordMapper { |
|||
long countByExample(PatientRecordExample example); |
|||
|
|||
int deleteByExample(patientRecordExample example); |
|||
int deleteByExample(PatientRecordExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(patientRecord record); |
|||
int insert(PatientRecord record); |
|||
|
|||
int insertSelective(patientRecord record); |
|||
int insertSelective(PatientRecord record); |
|||
|
|||
List<patientRecord> selectByExample(patientRecordExample example); |
|||
List<PatientRecord> selectByExample(PatientRecordExample example); |
|||
|
|||
patientRecord selectByPrimaryKey(Long id); |
|||
PatientRecord selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") patientRecord record, @Param("example") patientRecordExample example); |
|||
int updateByExampleSelective(@Param("record") PatientRecord record, @Param("example") PatientRecordExample example); |
|||
|
|||
int updateByExample(@Param("record") patientRecord record, @Param("example") patientRecordExample example); |
|||
int updateByExample(@Param("record") PatientRecord record, @Param("example") PatientRecordExample example); |
|||
|
|||
int updateByPrimaryKeySelective(patientRecord record); |
|||
int updateByPrimaryKeySelective(PatientRecord record); |
|||
|
|||
int updateByPrimaryKey(patientRecord record); |
|||
int updateByPrimaryKey(PatientRecord record); |
|||
} |
Loading…
Reference in new issue