PatientInfoService.java 271 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
package com.lyms.talkonlineweb.service;

import com.lyms.talkonlineweb.domain.PatientInfo;
import com.baomidou.mybatisplus.extension.service.IService;

/**
*这个是个view不能做插入操作
*/
public interface PatientInfoService extends IService<PatientInfo> {

}