You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- package com.qtzl.alterSales.manager.service;
-
- import cn.com.taiji.common.manager.net.http.ServiceHandleException;
- import com.qtzl.alterSales.manager.model.protocol.sales.AflUserNoticeInfoSaveOrUpdateRequest;
- import com.qtzl.alterSales.manager.model.protocol.sales.AflUserNoticeInfoUpdateStatusRequest;
-
- public interface AflUserNoticeInfoService {
- void save(AflUserNoticeInfoSaveOrUpdateRequest request) throws ServiceHandleException;
-
- void update(AflUserNoticeInfoSaveOrUpdateRequest request) throws ServiceHandleException;
-
- void updateStatus(AflUserNoticeInfoUpdateStatusRequest request) throws ServiceHandleException;
-
- }
|