|
|
@@ -21,14 +21,6 @@ public class McpDraftSubmitResponse {
|
|
21
|
21
|
@Schema(description = "登记批次业务编号", example = "bat_1")
|
|
22
|
22
|
private String batchId;
|
|
23
|
23
|
|
|
24
|
|
- @JsonProperty("registration_url")
|
|
25
|
|
- @Schema(description = "临时工登记页 path")
|
|
26
|
|
- private String registrationUrl;
|
|
27
|
|
-
|
|
28
|
|
- @JsonProperty("qr_code_url")
|
|
29
|
|
- @Schema(description = "小程序码图片 URL")
|
|
30
|
|
- private String qrCodeUrl;
|
|
31
|
|
-
|
|
32
|
24
|
public Long getDraftId() {
|
|
33
|
25
|
return draftId;
|
|
34
|
26
|
}
|
|
|
@@ -61,19 +53,4 @@ public class McpDraftSubmitResponse {
|
|
61
|
53
|
this.batchId = batchId;
|
|
62
|
54
|
}
|
|
63
|
55
|
|
|
64
|
|
- public String getRegistrationUrl() {
|
|
65
|
|
- return registrationUrl;
|
|
66
|
|
- }
|
|
67
|
|
-
|
|
68
|
|
- public void setRegistrationUrl(String registrationUrl) {
|
|
69
|
|
- this.registrationUrl = registrationUrl;
|
|
70
|
|
- }
|
|
71
|
|
-
|
|
72
|
|
- public String getQrCodeUrl() {
|
|
73
|
|
- return qrCodeUrl;
|
|
74
|
|
- }
|
|
75
|
|
-
|
|
76
|
|
- public void setQrCodeUrl(String qrCodeUrl) {
|
|
77
|
|
- this.qrCodeUrl = qrCodeUrl;
|
|
78
|
|
- }
|
|
79
|
56
|
}
|