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; } }