健康报告dao生成

This commit is contained in:
limqhz
2021-03-07 09:57:34 +08:00
parent 0b651dc87d
commit d35edae11e
6 changed files with 628 additions and 14 deletions

View File

@@ -0,0 +1,17 @@
package com.sv.mapper;
import com.sv.entity.HealthDoc;
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);
}