This commit is contained in:
DU 2020-12-16 13:17:53 +08:00
commit 14fdf7cfb3
2 changed files with 9 additions and 0 deletions

View File

@ -23,6 +23,7 @@ public class SimulationLog {
private Event event;
@Getter
public class Event {
private EventType type;

View File

@ -2,6 +2,7 @@ package club.joylink.rtss.vo.client.map.newmap;
import club.joylink.rtss.vo.client.Point;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
@ -38,4 +39,11 @@ public class MapStationSplitVO {
*/
@NotNull
private Point position;
/**
* 显示条件 01现地&行调 / 02行调 / 03现地
*/
@ApiModelProperty(value = "显示条件")
@NotBlank(message="显示条件不能为空")
private String showConditions;
}