| | |
| | | import com.xcong.excoin.common.entity.QueryRequest;
|
| | | import com.xcong.excoin.modules.helpCenter.entity.HelpCenterArticleEntity;
|
| | | import com.xcong.excoin.modules.helpCenter.entity.HelpCenterNoticeEntity;
|
| | | import com.xcong.excoin.modules.helpCenter.entity.HelpCenterTypeEntity;
|
| | |
|
| | | public interface HelpCenterService extends IService<HelpCenterNoticeEntity> {
|
| | |
|
| | |
| | |
|
| | | FebsResponse helpCenterUsConfirm(@Valid HelpCenterArticleEntity helpCenterArticleEntity);
|
| | |
|
| | | IPage<HelpCenterTypeEntity> findHelpCenterTypeListInPage(HelpCenterTypeEntity helpCenterTypeEntity, QueryRequest request);
|
| | |
|
| | | void helpCenterTypeAdds(@Valid HelpCenterTypeEntity helpCenterTypeEntity);
|
| | |
|
| | | FebsResponse helpCenterTypeDelete(@NotNull(message = "{required}") Long id);
|
| | |
|
| | | }
|