InsideInspectionOperRequest.java 325 B

123456789101112131415161718192021222324
  1. package com.rongwei.bsentity.dto;
  2. import lombok.*;
  3. @Setter
  4. @Getter
  5. @NoArgsConstructor
  6. @AllArgsConstructor
  7. @Builder
  8. public class InsideInspectionOperRequest {
  9. /**
  10. * 内部报验单id
  11. */
  12. private String id;
  13. /**
  14. * 发起源
  15. *
  16. * pc
  17. * mobile
  18. */
  19. private String launchSource;
  20. }