1234567891011121314151617181920212223242526272829303132333435 |
- package api.common.pojo.vo.project;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * 场景基本信息
- */
- @Getter
- @Setter
- public class SceneBaseInfoVo {
- //场景id集合
- private String sceneIds;
- //自然场景id
- private String naturalId;
- //自然场景名称
- private String naturalName;
- //交通事故场景id
- private String accidentId;
- //交通事故场景名称/自然法规场景名称
- private String sceneName;
- //标准法规场景id
- private String regulationsId;
- //场景描述通用字段
- private String commonSceneName;
- }
|