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.
14 lines
333 B
Java
14 lines
333 B
Java
6 months ago
|
package com.supervision.service;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.supervision.model.Human;
|
||
|
|
||
|
/**
|
||
|
* @author Administrator
|
||
|
* @description 针对表【vp_human(数字人表)】的数据库操作Service
|
||
|
* @createDate 2024-06-20 15:51:59
|
||
|
*/
|
||
|
public interface HumanService extends IService<Human> {
|
||
|
|
||
|
}
|