点位表新增字段 库区id 巷道id

This commit is contained in:
aikai 2025-01-13 11:58:46 +08:00
parent 281522adca
commit 4fbd5f7dcb
5 changed files with 29 additions and 1 deletions

View File

@ -88,7 +88,6 @@ public class PositionMapController {
positionMapService.downloadPng(floor, area, response);
}
@GetMapping("/download")
@Operation(summary = "下载文件")
@PermitAll

View File

@ -1,5 +1,6 @@
package cn.iocoder.yudao.module.system.controller.admin.positionmap.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.*;
import java.util.*;
import io.swagger.v3.oas.annotations.media.Schema;
@ -18,6 +19,12 @@ public class PositionMapItemPageReqVO extends PageParam {
@Schema(description = "仓库点位地图表id", example = "30963")
private Long positionMapId;
@Schema(description = "库区id(自定义)", example = "30963")
private Long areaId;
@Schema(description = "巷道id(自定义)", example = "30963")
private Long laneId;
@Schema(description = "坐标x轴")
private String locationX;

View File

@ -20,6 +20,14 @@ public class PositionMapItemRespVO {
@ExcelProperty("仓库点位地图表id")
private Long positionMapId;
@Schema(description = "库区id(自定义)", example = "30963")
@ExcelProperty("库区id(自定义)")
private Long areaId;
@Schema(description = "巷道id(自定义)", example = "30963")
@ExcelProperty("巷道id(自定义)")
private Long laneId;
@Schema(description = "坐标x轴")
@ExcelProperty("坐标x轴")
private String locationX;

View File

@ -15,6 +15,12 @@ public class PositionMapItemSaveReqVO {
@Schema(description = "仓库点位地图表id", example = "30963")
private Long positionMapId;
@Schema(description = "库区id(自定义)", example = "30963")
private Long areaId;
@Schema(description = "巷道id(自定义)", example = "30963")
private Long laneId;
@Schema(description = "坐标x轴")
private String locationX;

View File

@ -31,6 +31,14 @@ public class PositionMapItemDO extends BaseDO {
* 仓库点位地图表id
*/
private Long positionMapId;
/**
* 库区id(自定义)
*/
private Long areaId;
/**
* 巷道id(自定义)
*/
private Long laneId;
/**
* 坐标x轴
*/