新增预警页面
This commit is contained in:
@@ -30,6 +30,9 @@ export interface BizMailAttachments extends BasicModel<BizMailAttachments> {
|
||||
export const bizMailAttachmentsList = (params?: BizMailAttachments | any) =>
|
||||
defHttp.get<BizMailAttachments>({ url: adminPath + '/biz/mailAttachments/list', params });
|
||||
|
||||
export const bizMailAttachmentsListAll = (params?: BizMailAttachments | any) =>
|
||||
defHttp.get<BizMailAttachments[]>({ url: adminPath + '/biz/mailAttachments/listAll', params });
|
||||
|
||||
export const bizMailAttachmentsListData = (params?: BizMailAttachments | any) =>
|
||||
defHttp.post<Page<BizMailAttachments>>({ url: adminPath + '/biz/mailAttachments/listData', params });
|
||||
|
||||
@@ -53,3 +56,4 @@ export const bizMailAttachmentsImportData = (
|
||||
|
||||
export const bizMailAttachmentsDelete = (params?: BizMailAttachments | any) =>
|
||||
defHttp.get<BizMailAttachments>({ url: adminPath + '/biz/mailAttachments/delete', params });
|
||||
|
||||
|
||||
@@ -58,3 +58,7 @@ export const bizMailSentImportData = (
|
||||
|
||||
export const bizMailSentDelete = (params?: BizMailSent | any) =>
|
||||
defHttp.get<BizMailSent>({ url: adminPath + '/biz/mailSent/delete', params });
|
||||
|
||||
|
||||
export const bizMailSent = (params?: BizMailSent | any) =>
|
||||
defHttp.get<BizMailSent>({ url: adminPath + '/biz/mailSent/sent', params });
|
||||
Reference in New Issue
Block a user