songhuangfeng123
2022-07-25 d740556f340346c2966f600f5237dca010b27f4a
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
36
37
38
39
40
41
42
43
44
45
46
package com.gkhy.safePlatform.targetDuty.model.dto.req;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.gkhy.safePlatform.targetDuty.entity.ExamineItem;
import com.gkhy.safePlatform.targetDuty.entity.TargetExamine;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
public class TargetExamineSaveOrUpdate implements Serializable {
 
 
    @TableId(type = IdType.AUTO)
    private Long id;
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    //关联的考核数据列表
    private List<TargetExamine> examineList = new ArrayList<>();
 
    public List<TargetExamine> getExamineList() {
        return examineList;
    }
 
    public void setExamineList(List<TargetExamine> examineList) {
        this.examineList = examineList;
    }
 
    //要删除的id集合,多个用逗号隔开
    private String delIds;
 
    public String getDelIds() {
        return delIds;
    }
 
    public void setDelIds(String delIds) {
        this.delIds = delIds;
    }
}