parent
47b8987997
commit
5b9a853a76
@ -0,0 +1,60 @@ |
||||
package com.api.config.controller; |
||||
|
||||
import com.github.pagehelper.PageHelper; |
||||
import com.github.pagehelper.PageInfo; |
||||
import com.hfkj.channel.lakala.config.LaKaLaConfig; |
||||
import com.hfkj.channel.saas.utils.SaasCommon; |
||||
import com.hfkj.common.exception.ErrorCode; |
||||
import com.hfkj.common.exception.ErrorHelp; |
||||
import com.hfkj.common.exception.SysCode; |
||||
import com.hfkj.common.utils.ResponseMsgUtil; |
||||
import com.hfkj.entity.BsCompany; |
||||
import com.hfkj.entity.SecRegion; |
||||
import com.hfkj.model.ResponseData; |
||||
import com.hfkj.model.StoreModel; |
||||
import com.hfkj.service.BsCompanyService; |
||||
import com.hfkj.service.BsIndustryService; |
||||
import com.hfkj.service.BsLklMccService; |
||||
import com.hfkj.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.web.bind.annotation.*; |
||||
|
||||
import javax.annotation.Resource; |
||||
import java.util.ArrayList; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
|
||||
@RestController |
||||
@RequestMapping(value="/common") |
||||
@Api(value="共用接口") |
||||
public class CommonController { |
||||
|
||||
Logger log = LoggerFactory.getLogger(CommonController.class); |
||||
|
||||
@Resource |
||||
private BsIndustryService industryService; |
||||
|
||||
|
||||
@RequestMapping(value="/getIndustry",method = RequestMethod.GET) |
||||
@ResponseBody |
||||
@ApiOperation(value = "获取行业数据") |
||||
public ResponseData getIndustry() { |
||||
try { |
||||
|
||||
return ResponseMsgUtil.success(industryService.getCacheIndustry()); |
||||
|
||||
} catch (Exception e) { |
||||
log.error("CommonController --> getIndustry() error!", e); |
||||
return ResponseMsgUtil.exception(e); |
||||
} |
||||
} |
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,134 @@ |
||||
package com.hfkj.model; |
||||
|
||||
import javax.xml.crypto.Data; |
||||
|
||||
/** |
||||
* 对外的门店信息内容 |
||||
* @author sum1dream |
||||
*/ |
||||
public class OpenStoreModel { |
||||
|
||||
// 门店地址
|
||||
private String blisRegAddress; |
||||
|
||||
// 门头照
|
||||
private String doorHeadImg; |
||||
|
||||
// 门店名称
|
||||
private String storeName; |
||||
|
||||
// 父类行业分类id
|
||||
private Long parentId; |
||||
|
||||
// 子类行业分类id
|
||||
private Long childId; |
||||
|
||||
// 父类行业分类名称
|
||||
private String parentName; |
||||
|
||||
// 子类行业分类名称
|
||||
private String childName; |
||||
|
||||
// 门店状态 0:删除 1:正常 2:停用 3:审核中 4:审核失败
|
||||
private Integer storeStatus; |
||||
|
||||
|
||||
// 唯独
|
||||
private String latitude; |
||||
|
||||
// 经度
|
||||
private String longitude; |
||||
|
||||
// 创建时间
|
||||
private Data storeCreateTime; |
||||
|
||||
public String getLatitude() { |
||||
return latitude; |
||||
} |
||||
|
||||
public void setLatitude(String latitude) { |
||||
this.latitude = latitude; |
||||
} |
||||
|
||||
public String getLongitude() { |
||||
return longitude; |
||||
} |
||||
|
||||
public void setLongitude(String longitude) { |
||||
this.longitude = longitude; |
||||
} |
||||
|
||||
|
||||
|
||||
public String getBlisRegAddress() { |
||||
return blisRegAddress; |
||||
} |
||||
|
||||
public void setBlisRegAddress(String blisRegAddress) { |
||||
this.blisRegAddress = blisRegAddress; |
||||
} |
||||
|
||||
public String getDoorHeadImg() { |
||||
return doorHeadImg; |
||||
} |
||||
|
||||
public void setDoorHeadImg(String doorHeadImg) { |
||||
this.doorHeadImg = doorHeadImg; |
||||
} |
||||
|
||||
public String getStoreName() { |
||||
return storeName; |
||||
} |
||||
|
||||
public void setStoreName(String storeName) { |
||||
this.storeName = storeName; |
||||
} |
||||
|
||||
public Long getParentId() { |
||||
return parentId; |
||||
} |
||||
|
||||
public void setParentId(Long parentId) { |
||||
this.parentId = parentId; |
||||
} |
||||
|
||||
public Long getChildId() { |
||||
return childId; |
||||
} |
||||
|
||||
public void setChildId(Long childId) { |
||||
this.childId = childId; |
||||
} |
||||
|
||||
public String getParentName() { |
||||
return parentName; |
||||
} |
||||
|
||||
public void setParentName(String parentName) { |
||||
this.parentName = parentName; |
||||
} |
||||
|
||||
public String getChildName() { |
||||
return childName; |
||||
} |
||||
|
||||
public void setChildName(String childName) { |
||||
this.childName = childName; |
||||
} |
||||
|
||||
public Integer getStoreStatus() { |
||||
return storeStatus; |
||||
} |
||||
|
||||
public void setStoreStatus(Integer storeStatus) { |
||||
this.storeStatus = storeStatus; |
||||
} |
||||
|
||||
public Data getStoreCreateTime() { |
||||
return storeCreateTime; |
||||
} |
||||
|
||||
public void setStoreCreateTime(Data storeCreateTime) { |
||||
this.storeCreateTime = storeCreateTime; |
||||
} |
||||
} |
Loading…
Reference in new issue