Helius
2021-06-23 b8ca59259b0690f664ee70ecca69dfb53700c653
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.xzx.gc.model.system;
 
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
@Data
public class ItemUserAddDTO {
 
    @ApiModelProperty("回收员ID")
    private String userId;
 
    @ApiModelProperty("选择的物品的itemType,多个以逗号分隔")
    private String itemTypes;
}