点位表新增字段 库区id 巷道id
This commit is contained in:
parent
281522adca
commit
4fbd5f7dcb
@ -88,7 +88,6 @@ public class PositionMapController {
|
||||
positionMapService.downloadPng(floor, area, response);
|
||||
}
|
||||
|
||||
|
||||
@GetMapping("/download")
|
||||
@Operation(summary = "下载文件")
|
||||
@PermitAll
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
||||
|
@ -31,6 +31,14 @@ public class PositionMapItemDO extends BaseDO {
|
||||
* 仓库点位地图表id
|
||||
*/
|
||||
private Long positionMapId;
|
||||
/**
|
||||
* 库区id(自定义)
|
||||
*/
|
||||
private Long areaId;
|
||||
/**
|
||||
* 巷道id(自定义)
|
||||
*/
|
||||
private Long laneId;
|
||||
/**
|
||||
* 坐标x轴
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user