|
@@ -21,6 +21,7 @@ import com.cyksj.mapper.manage.cms.CmsUserMapper;
|
|
|
import com.cyksj.model.entity.*;
|
|
import com.cyksj.model.entity.*;
|
|
|
import com.cyksj.model.excel.ExcelGptRechargeStatisticsData;
|
|
import com.cyksj.model.excel.ExcelGptRechargeStatisticsData;
|
|
|
import com.cyksj.model.excel.ExcelRechargeAccountData;
|
|
import com.cyksj.model.excel.ExcelRechargeAccountData;
|
|
|
|
|
+import com.cyksj.model.excel.GptCardKeyExcelData;
|
|
|
import com.cyksj.model.manage.views.AccountView;
|
|
import com.cyksj.model.manage.views.AccountView;
|
|
|
import com.cyksj.model.manage.views.GroupsRelationBackView;
|
|
import com.cyksj.model.manage.views.GroupsRelationBackView;
|
|
|
import com.cyksj.model.request.*;
|
|
import com.cyksj.model.request.*;
|
|
@@ -466,6 +467,15 @@ public class CmsGroupRelationController {
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(search);
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(search);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 导出卡密
|
|
|
|
|
+ */
|
|
|
|
|
+ @GetMapping("/export/gpt/cardKey")
|
|
|
|
|
+ @Log(module = "平台管理/导出卡密", businessType = BusinessType.EXPORT, isSaveRequestData = true)
|
|
|
|
|
+ public void exportGptCardKey(HttpServletResponse response, HttpServletRequest request) {
|
|
|
|
|
+ List<GptCardKeyExcelData> list = beanSearcher.searchAll(GptCardKeyExcelData.class, MapUtils.flatBuilder(request.getParameterMap()).build());
|
|
|
|
|
+ EasyExcelUtils.createExcelStreamMutilByEasyExcel(response, GptCardKeyExcelData.class, list, "卡密列表", "卡密列表", ExcelTypeEnum.XLSX, null);
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
/**
|