16 lines
297 B
16 lines
297 B
12 months ago
|
package com.yingji.service;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.yingji.entity.AcceptEvents;
|
||
|
|
||
|
/**
|
||
|
* 受理调度信息(Accept)表服务接口
|
||
|
*
|
||
|
* @author wu
|
||
|
* @since 2024-05-10 17:10:32
|
||
|
*/
|
||
|
public interface AcceptService extends IService<AcceptEvents> {
|
||
|
|
||
|
}
|
||
|
|