songhuangfeng123
2022-08-10 56ba708b25e1834eeb6c0366945b2c1fbafcfbe5
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;
    }
}