net.guerlab.smart.banner.web.controller.commons.BannerGroupController Maven / Gradle / Ivy
package net.guerlab.smart.banner.web.controller.commons;
import io.swagger.annotations.Api;
import net.guerlab.commons.exception.ApplicationException;
import net.guerlab.smart.banner.core.domain.BannerGroupDTO;
import net.guerlab.smart.banner.core.exception.BannerGroupInvalidException;
import net.guerlab.smart.banner.core.searchparams.BannerGroupSearchParams;
import net.guerlab.smart.banner.service.entity.BannerGroup;
import net.guerlab.smart.banner.service.service.BannerGroupService;
import net.guerlab.smart.platform.server.controller.BaseFindController;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* banner分组
*
* @author guer
*/
@Api(tags = "banner分组")
@RestController("/commons/bannerGroup")
@RequestMapping("/commons/bannerGroup")
public class BannerGroupController
extends BaseFindController {
@Override
protected ApplicationException nullPointException() {
return new BannerGroupInvalidException();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy