fix + 枚举,仓库数据等

This commit is contained in:
shuo.wang
2025-04-08 16:38:30 +08:00
parent a389e073c4
commit 80b5afe47f
20 changed files with 480 additions and 11 deletions

View File

@@ -59,7 +59,8 @@ public class SignValidateFilter implements Filter {
"/zxjp/mini/program/v1/partnerManage/openArea/areaApplyQuery",
"/zxjp/**/api/audit/result",
"/zxjp/**/api/license",
"/zxjp/mini/line/getRegionPayPic"
"/zxjp/mini/line/getRegionPayPic",
"/zxjp/mini/**"
);

View File

@@ -0,0 +1,61 @@
package com.cool.store.controller.webb;
import com.cool.store.entity.EnumInfoDO;
import com.cool.store.enums.ZxjpEnum;
import com.cool.store.response.ResponseResult;
import com.cool.store.response.XgjVicePresidentResponse;
import com.cool.store.service.EnumInfoService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.apache.commons.collections4.CollectionUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.List;
/**
* @Author: WangShuo
* @Date: 2025/04/08/15:31
* @Version 1.0
* @注释:
*/
@Api("获取枚举数据")
@RestController
@RequestMapping("/pc/enumInfo")
public class PCEnumInfoController {
@Resource
private EnumInfoService enumInfoService;
@GetMapping("/getVicePresident")
@ApiOperation("获取副总裁名单")
public ResponseResult<List<XgjVicePresidentResponse>> getVicePresident() {
List<EnumInfoDO> list = enumInfoService.getByTypeCode(ZxjpEnum.XGJ_VICE_PRESIDENT.getCode());
List<XgjVicePresidentResponse> responses = new ArrayList<>();
if (CollectionUtils.isNotEmpty(list)){
for (EnumInfoDO enumInfoDO : list){
XgjVicePresidentResponse xgjVicePresidentResponse = new XgjVicePresidentResponse();
xgjVicePresidentResponse.setAffiliatedOrganization(enumInfoDO.getSysKey());
xgjVicePresidentResponse.setName(enumInfoDO.getSysValue());
responses.add(xgjVicePresidentResponse);
}
}
return ResponseResult.success(responses);
}
@GetMapping("/getDeclareGoodsDate")
@ApiOperation("获取报货日期")
public ResponseResult<List<String>> getDeclareGoodsDate() {
List<EnumInfoDO> list = enumInfoService.getByTypeCode(ZxjpEnum.DECLARE_GOODS_DATE.getCode());
List<String> responses = new ArrayList<>();
if (CollectionUtils.isNotEmpty(list)){
for (EnumInfoDO enumInfoDO : list){
responses.add(enumInfoDO.getSysValue());
}
}
return ResponseResult.success(responses);
}
}

View File

@@ -0,0 +1,34 @@
package com.cool.store.controller.webb;
import com.cool.store.entity.WarehouseInfoDO;
import com.cool.store.response.ResponseResult;
import com.cool.store.service.WarehouseInfoService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.List;
/**
* @Author: WangShuo
* @Date: 2025/04/08/15:12
* @Version 1.0
* @注释:
*/
@RestController
@Api("PC获取正新鸡排仓库配置")
@RequestMapping("/pc/warehouseInfo")
public class PCWarehouseInfoController {
@Resource
private WarehouseInfoService warehouseInfoService;
@GetMapping("/getAllAndActive")
@ApiOperation(value = "获取正新鸡排仓库配置")
public ResponseResult<List<WarehouseInfoDO>> getAllAndActive() {
return ResponseResult.success(warehouseInfoService.getAllAndActive());
}
}