公告板
版本库
filestore
活动
搜索
登录
main
/
rcs-flow
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
#
luxiaotao1123
2024-12-16
bc5fa0165da2b3e41b9c27bee5394ff6d47f096f
[rcs-flow.git]
/
zy-acs-fake
/
src
/
main
/
java
/
com
/
zy
/
acs
/
fake
/
service
/
ActionTypeService.java
1
2
3
4
5
6
7
8
9
10
11
package com.zy.acs.fake.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.acs.fake.entity.ActionType;
public interface ActionTypeService extends IService<ActionType> {
ActionType selectByUuid(String uuid);
}