commit | author | age
|
9bcb19
|
1 |
/* |
I |
2 |
Copyright [2020] [https://www.xiaonuo.vip] |
|
3 |
|
|
4 |
Licensed under the Apache License, Version 2.0 (the "License"); |
|
5 |
you may not use this file except in compliance with the License. |
|
6 |
You may obtain a copy of the License at |
|
7 |
|
|
8 |
http://www.apache.org/licenses/LICENSE-2.0 |
|
9 |
|
|
10 |
Unless required by applicable law or agreed to in writing, software |
|
11 |
distributed under the License is distributed on an "AS IS" BASIS, |
|
12 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
13 |
See the License for the specific language governing permissions and |
|
14 |
limitations under the License. |
|
15 |
|
|
16 |
Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点: |
|
17 |
|
|
18 |
1.请不要删除和修改根目录下的LICENSE文件。 |
|
19 |
2.请不要删除和修改Snowy源码头部的版权声明。 |
|
20 |
3.请保留源码和相关描述文件的项目出处,作者声明等。 |
|
21 |
4.分发源码时候,请注明软件出处 https://gitee.com/xiaonuobase/snowy |
|
22 |
5.在修改包名,模块名称,项目代码等时,请注明软件出处 https://gitee.com/xiaonuobase/snowy |
|
23 |
6.若您的项目无法满足以上几点,可申请商业授权,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip |
|
24 |
*/ |
|
25 |
package vip.xiaonuo.sys.modular.pos.service; |
|
26 |
|
|
27 |
import com.baomidou.mybatisplus.extension.service.IService; |
|
28 |
import vip.xiaonuo.core.pojo.page.PageResult; |
|
29 |
import vip.xiaonuo.sys.modular.pos.entity.SysPos; |
|
30 |
import vip.xiaonuo.sys.modular.pos.param.SysPosParam; |
|
31 |
|
|
32 |
import java.util.List; |
|
33 |
|
|
34 |
/** |
|
35 |
* 系统职位service接口 |
|
36 |
* |
|
37 |
* @author xuyuxiang yubaoshan |
|
38 |
* @date 2020/3/13 16:00 |
|
39 |
*/ |
|
40 |
public interface SysPosService extends IService<SysPos> { |
|
41 |
|
|
42 |
/** |
|
43 |
* 查询系统职位 |
|
44 |
* |
|
45 |
* @param sysPosParam 查询参数 |
|
46 |
* @return 查询分页结果 |
|
47 |
* @author xuyuxiang |
|
48 |
* @date 2020/3/26 10:19 |
|
49 |
*/ |
|
50 |
PageResult<SysPos> page(SysPosParam sysPosParam); |
|
51 |
|
|
52 |
/** |
|
53 |
* 系统职位列表 |
|
54 |
* |
|
55 |
* @param sysPosParam 查询参数 |
|
56 |
* @return 职位列表 |
|
57 |
* @author yubaoshan |
|
58 |
* @date 2020/6/21 23:44 |
|
59 |
*/ |
|
60 |
List<SysPos> list(SysPosParam sysPosParam); |
|
61 |
|
|
62 |
/** |
|
63 |
* 添加系统职位 |
|
64 |
* |
|
65 |
* @param sysPosParam 添加参数 |
|
66 |
* @author xuyuxiang |
|
67 |
* @date 2020/3/25 14:57 |
|
68 |
*/ |
|
69 |
void add(SysPosParam sysPosParam); |
|
70 |
|
|
71 |
/** |
|
72 |
* 删除系统职位 |
|
73 |
* |
|
74 |
* @param sysPosParamList 删除参数集合 |
|
75 |
* @author xuyuxiang |
|
76 |
* @date 2020/3/25 14:57 |
|
77 |
*/ |
|
78 |
void delete(List<SysPosParam> sysPosParamList); |
|
79 |
|
|
80 |
/** |
|
81 |
* 编辑系统职位 |
|
82 |
* |
|
83 |
* @param sysPosParam 编辑参数 |
|
84 |
* @author xuyuxiang |
|
85 |
* @date 2020/3/25 14:58 |
|
86 |
*/ |
|
87 |
void edit(SysPosParam sysPosParam); |
|
88 |
|
|
89 |
/** |
|
90 |
* 查看系统职位 |
|
91 |
* |
|
92 |
* @param sysPosParam 查看参数 |
|
93 |
* @return 系统职位 |
|
94 |
* @author xuyuxiang |
|
95 |
* @date 2020/3/26 9:50 |
|
96 |
*/ |
|
97 |
SysPos detail(SysPosParam sysPosParam); |
|
98 |
|
|
99 |
/** |
|
100 |
* 导出系统职位 |
|
101 |
* @author yubaoshan |
|
102 |
* @date 2021/5/29 16:12 |
|
103 |
*/ |
|
104 |
void export(SysPosParam sysPosParam); |
|
105 |
} |