mitao
6 天以前 1093b185322515aebcccee208018346e7f9edbb3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.ruoyi.system.dto.asset;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import java.io.Serializable;
import java.util.List;
 
/**
 * 修改盘点人DTO
 *
 * @author Claude
 * @since 2025-01-13
 */
@Data
@ApiModel(value = "AssetInventoryUserUpdateDTO", description = "修改盘点人请求参数")
public class AssetInventoryUserUpdateDTO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty("盘点任务ID")
    @NotNull(message = "盘点任务ID不能为空")
    private Integer taskId;
 
    @ApiModelProperty("资产ID")
    @NotEmpty(message = "资产ID列表不能为空")
    private List<Integer> assetIds;
 
    @ApiModelProperty("用户ID")
    @NotNull(message = "用户ID不能为空")
    private Integer userId;
}