Merge branch 'dev' into cbs
This commit is contained in:
commit
8ed5a7aea3
@ -28,6 +28,10 @@ public class PositionMapLineRespVO {
|
|||||||
@Schema(description = "结束点id(点位子表id)", example = "15890")
|
@Schema(description = "结束点id(点位子表id)", example = "15890")
|
||||||
@ExcelProperty("结束点id(点位子表id)")
|
@ExcelProperty("结束点id(点位子表id)")
|
||||||
private Long endPointId;
|
private Long endPointId;
|
||||||
|
@Schema(description = "出发点序号", example = "20863")
|
||||||
|
private Integer startingSortNum;
|
||||||
|
@Schema(description = "结束点序号", example = "20863")
|
||||||
|
private Integer endPointSortNum;
|
||||||
|
|
||||||
@Schema(description = "开始点位x轴", example = "15890")
|
@Schema(description = "开始点位x轴", example = "15890")
|
||||||
private String startPointX;
|
private String startPointX;
|
||||||
|
@ -25,6 +25,11 @@ public class PositionMapLineSaveReqVO {
|
|||||||
@Schema(description = "结束点id(点位子表id)", example = "15890")
|
@Schema(description = "结束点id(点位子表id)", example = "15890")
|
||||||
private Long endPointId;
|
private Long endPointId;
|
||||||
|
|
||||||
|
@Schema(description = "出发点序号", example = "20863")
|
||||||
|
private Integer startingSortNum;
|
||||||
|
@Schema(description = "结束点序号", example = "20863")
|
||||||
|
private Integer endPointSortNum;
|
||||||
|
|
||||||
@Schema(description = "开始点位x轴", example = "15890")
|
@Schema(description = "开始点位x轴", example = "15890")
|
||||||
private String startPointX;
|
private String startPointX;
|
||||||
@Schema(description = "开始点位y轴", example = "15890")
|
@Schema(description = "开始点位y轴", example = "15890")
|
||||||
|
@ -42,6 +42,14 @@ public class PositionMapLineDO extends BaseDO {
|
|||||||
* 结束点id(点位子表id)
|
* 结束点id(点位子表id)
|
||||||
*/
|
*/
|
||||||
private Long endPointId;
|
private Long endPointId;
|
||||||
|
/**
|
||||||
|
* 出发点序号
|
||||||
|
*/
|
||||||
|
private Integer startingSortNum;
|
||||||
|
/**
|
||||||
|
* 结束点序号
|
||||||
|
*/
|
||||||
|
private Integer endPointSortNum;
|
||||||
/**
|
/**
|
||||||
* 开始点位x轴
|
* 开始点位x轴
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user