You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
virtual-patient/virtual-patient-model/src/main/java/com/supervision/service/AskIntentService.java

14 lines
351 B
Java

package com.supervision.service;
import com.supervision.model.AskIntent;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* @author flevance
* @description vp_ask_intent()Service
* @createDate 2023-10-20 17:19:21
*/
public interface AskIntentService extends IService<AskIntent> {
}