1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.nq.service;
|
| import com.nq.common.ServerResponse;
|
| import java.util.List;
|
| /**
| * 支付设置:默认/支付1/支付2/支付3,可拖拽排序(param 随排序变动)、可开关
| */
| public interface ISitePayOptionService {
|
| /** 管理后台:查询全部,按排序 */
| ServerResponse listForAdmin();
|
| /** 管理后台:拖动排序,传入新顺序的 id 列表,param 按新顺序赋 0,1,2,3 */
| ServerResponse updateSort(List<Integer> orderedIds);
|
| /** 管理后台:开启/关闭 */
| ServerResponse setEnabled(Integer id, Integer enabled);
|
| /** H5:查询已开启的支付设置,按排序 */
| ServerResponse listForH5();
| }
|
|