StandardsRegulationsParam.java 866 B

1234567891011121314151617181920212223242526272829303132
  1. package api.common.pojo.param.scene;
  2. import api.common.pojo.common.PageVO;
  3. import lombok.*;
  4. import java.io.Serializable;
  5. /**
  6. * 标准法规场景
  7. */
  8. @EqualsAndHashCode()
  9. @Data
  10. @Builder
  11. @NoArgsConstructor
  12. @AllArgsConstructor
  13. public class StandardsRegulationsParam extends PageVO implements Serializable {
  14. private String regulationsId; // (唯一)
  15. private String sceneName; //场景名称
  16. private String[] regulationType; //法规类型
  17. private String standardType; //标准类型
  18. private String share ; //是否分析 1为分享
  19. private String videoAddress ; //视频地址
  20. private String osgbAddress ;//
  21. private String xmlAddress ; //
  22. private String xodrAddress ; //
  23. private String jsonAddress ; //
  24. private String videoPreview;//视频预览地址
  25. private String[] ids ; //回显数组
  26. }