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

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

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

}