songhuangfeng123
2022-08-18 233fb69fa9d1694e97337d74fa3da72cacda04c1
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
package com.gkhy.safePlatform.targetDuty.model.dto.req;
 
import java.sql.Timestamp;
import java.util.Date;
import java.util.List;
 
import com.gkhy.safePlatform.targetDuty.annotation.Query;
 
public class TargetDutyWorkApproveQueryCriteria {
    //关联业务类型 1:目标检查 2:目标上报
    @Query()
    private Integer relateType;
    //关联的审批对象表ID    
    @Query()
    private Long relateId;
 
    @Query(type = Query.Type.BETWEEN)
    private List<Timestamp> gmtCreate;
 
    public Integer getRelateType() {
        return relateType;
    }
 
    public void setRelateType(Integer relateType) {
        this.relateType = relateType;
    }
 
    public Long getRelateId() {
        return relateId;
    }
 
    public void setRelateId(Long relateId) {
        this.relateId = relateId;
    }
 
    public List<Timestamp> getGmtCreate() {
        return gmtCreate;
    }
 
    public void setGmtCreate(List<Timestamp> gmtCreate) {
        this.gmtCreate = gmtCreate;
    }
}