| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | | package com.xzx.gc.user.dto; |  |   |  | import io.swagger.annotations.ApiModel; |  | import io.swagger.annotations.ApiModelProperty; |  | import lombok.Data; |  |   |  | @Data |  | @ApiModel(value = "ExamineJwyDto", description = "集物员审核接收参数类") |  | public class ExamineJwyDto { |  |   |  |     @ApiModelProperty(value ="申请记录ID" ,required=true) |  |     private Long id; |  |   |  |     @ApiModelProperty(value ="审核类型  1:同意 2:拒绝" ,required=true) |  |     private Integer type; |  |   |  | } | 
 |