parent
391f69b5ee
commit
590cbe1f46
@ -0,0 +1,66 @@ |
||||
package com.cweb.controller; |
||||
|
||||
import com.hai.common.utils.ResponseMsgUtil; |
||||
import com.hai.entity.BsCompany; |
||||
import com.hai.entity.CmsContent; |
||||
import com.hai.entity.CmsPatch; |
||||
import com.hai.entity.SecRegion; |
||||
import com.hai.model.CmsContentModel; |
||||
import com.hai.model.ResponseData; |
||||
import com.hai.model.UserInfoModel; |
||||
import com.hai.service.BsCompanyService; |
||||
import com.hai.service.CmsContentService; |
||||
import com.hai.service.CmsPatchService; |
||||
import com.hai.service.CommonService; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import org.apache.commons.lang3.StringUtils; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
import org.springframework.stereotype.Controller; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
import javax.annotation.Resource; |
||||
import javax.servlet.http.HttpServletRequest; |
||||
import java.util.*; |
||||
|
||||
@Controller |
||||
@Api(value = "内容管理 内容发布") |
||||
@RequestMapping(value = "/cmsContent") |
||||
public class CmsContentController { |
||||
|
||||
private static Logger log = LoggerFactory.getLogger(CmsContentController.class); |
||||
|
||||
@Resource |
||||
private CommonService commonService; |
||||
|
||||
@Resource |
||||
private CmsContentService cmsContentService; |
||||
|
||||
@Resource |
||||
private BsCompanyService bsCompanyService; |
||||
|
||||
@RequestMapping(value = "/getCorporateAdvertising", method = RequestMethod.GET) |
||||
@ApiOperation(value = "查询首页轮播图") |
||||
@ResponseBody |
||||
public ResponseData getCorporateAdvertising(@RequestParam(name = "regionId", required = true) String regionId) { |
||||
try { |
||||
|
||||
SecRegion region = commonService.getParentByRegion(Long.parseLong(regionId)); |
||||
if (region != null) { |
||||
BsCompany bsCompany = bsCompanyService.selectCompanyByRegion(region.getRegionId().toString()); |
||||
if (bsCompany != null) { |
||||
Map<String,String> map = new HashMap<>(); |
||||
map.put("companyId", bsCompany.getId().toString()); |
||||
map.put("status", "2"); |
||||
map.put("categoryCode", "HOME_IMG"); |
||||
return ResponseMsgUtil.success(cmsContentService.getListContent(map)); |
||||
} |
||||
} |
||||
return ResponseMsgUtil.success(new ArrayList<>()); |
||||
} catch (Exception e) { |
||||
log.error("CmsContentController --> getCorporateAdvertising() error!", e); |
||||
return ResponseMsgUtil.exception(e); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue