kongzy
2024-09-23 d015cc0b48ca51a2b93b6c60c91dc352a104b1e7
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.gkhy.safePlatform.targetDuty.model.dto.req;
 
import java.sql.Timestamp;
import com.gkhy.safePlatform.targetDuty.annotation.Query;
 
public class TargetTypeQueryCriteria {
        
    @Query()
    private Long id;
    //分类名称    
    @Query(type = Query.Type.INNER_LIKE)
    private String typeName;
    //说明    
    @Query()
    private String memo;
        
    @Query()
    private Timestamp createTime;
        
    @Query()
    private Timestamp updateTime;
 
    //是否删除 0:未删除 1:删除
    @Query()
    private Integer delFlag = 0;
    public Integer getDelFlag() {
        return delFlag;
    }
 
    public void setDelFlag(Integer delFlag) {
        this.delFlag = delFlag;
    }
            
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
    //分类名称        
    public String getTypeName() {
        return typeName;
    }
 
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
    //说明        
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
            
    public Timestamp getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Timestamp createTime) {
        this.createTime = createTime;
    }
            
    public Timestamp getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Timestamp updateTime) {
        this.updateTime = updateTime;
    }
}