123456789101112131415161718192021222324 |
- package com.rongwei.bsentity.dto;
- import lombok.*;
- @Setter
- @Getter
- @NoArgsConstructor
- @AllArgsConstructor
- @Builder
- public class InsideInspectionOperRequest {
- /**
- * 内部报验单id
- */
- private String id;
- /**
- * 发起源
- *
- * pc
- * mobile
- */
- private String launchSource;
- }
|