zhangfeng
2023-07-17 1e4e6a526682ddcd62378b1f2975e7d4b4b2de4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.gk.hotwork.specialWork.model.query;
 
public class WorkHoistingQuery {
    //作业申请id
    private Long workApplyId;
    //状态
    private Byte status;
 
    public Long getWorkApplyId() {
        return workApplyId;
    }
 
    public void setWorkApplyId(Long workApplyId) {
        this.workApplyId = workApplyId;
    }
 
    public Byte getStatus() {
        return status;
    }
 
    public void setStatus(Byte status) {
        this.status = status;
    }
}