songhuangfeng123
2022-07-25 d740556f340346c2966f600f5237dca010b27f4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.gkhy.safePlatform.targetDuty.model.dto.req;
 
import java.sql.Timestamp;
import com.gkhy.safePlatform.targetDuty.annotation.Query;
 
public class TargetExamineQueryCriteria {
    //关联的目标指标/外键
    @Query()
    private Long targetId;
    //关联的目标指标/外键
    public Long getTargetId() {
        return targetId;
    }
 
    public void setTargetId(Long targetId) {
        this.targetId = targetId;
    }
}