1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.ltkj.tduck.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ltkj.tduck.domain.UserFormEntity;
|
| /**
| * 表单表(Form)表服务接口
| *
| * @author smalljop
| * @since 2020-11-18 18:16:18
| */
| public interface UserFormService extends IService<UserFormEntity> {
|
|
| /**
| * 根据key获取
| *
| * @param key key
| * @return UserFormEntity
| */
| UserFormEntity getByKey(final String key);
|
|
| }
|
|