zhangfeng
2022-11-25 f600f38c6c23a282b61ed4db1b2da094d695276f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.gkhy.safePlatform.equipment.model.dto.req;
 
import javax.validation.constraints.NotNull;
import java.util.List;
 
/**
 * @email 1603559716@qq.com
 * @author: zf
 * @date: 2022/11/25
 * @time: 13:48
 */
public class ParamForm {
    @NotNull(message = "参数不可为空!")
    List<Long> ids;
 
    public List<Long> getIds() {
        return ids;
    }
 
    public void setIds(List<Long> ids) {
        this.ids = ids;
    }
}